Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated requirements files #177

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

4.4.7 started

30ad9a9
Select commit
Loading
Failed to load commit list.
Open

updated requirements files #177

4.4.7 started
30ad9a9
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Apr 26, 2024 in 4m 1s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #177 updated requirements files.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Python ENV OS State
1196.1 3.8 DB=mysql DEBUG=f Linux passed
1196.2 3.9 DB=mysql DEBUG=f Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Versions 3.8, 3.9
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "python": [
    "3.8",
    "3.9"
  ],
  "services": [
    "mysql"
  ],
  "env": [
    "jobs={:DB=>\"mysql\", :DEBUG=>\"f\"}"
  ],
  "before_script": [
    "mysql -u root -e \"CREATE USER 'ensembl'@'localhost' IDENTIFIED BY '';\"",
    "mysql -u root -e \"GRANT ALL ON *.* TO 'ensembl'@'localhost';\"",
    "cp .env.dist .env"
  ],
  "install": [
    "pip install -r requirements.txt",
    "pip install coverage==4.5.1"
  ],
  "script": [
    "coverage run --source='.' ./src/manage.py test ensembl.production.portal.tests"
  ]
}