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

release notes #203

Closed
wants to merge 1 commit into from

release notes

defdc98
Select commit
Loading
Failed to load commit list.
Closed

release notes #203

release notes
defdc98
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch succeeded Jul 31, 2023 in 2m 29s

Build Passed

The build passed.

Details

This is a normal build for the feat/release-Notes branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Python Version 3.9
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "sudo": false,
  "python": [
    "3.9"
  ],
  "cache": {
    "pip": true,
    "apt": true
  },
  "addons": {
    "postgresql": "9.4"
  },
  "before_install": [
    "pip uninstall --yes gdcdictionary gdcdatamodel || true",
    "export BOTO_CONFIG=/dev/null"
  ],
  "install": [
    "pip install poetry",
    "poetry install -vv"
  ],
  "before_script": [
    "poetry run python bin/setup_test_database.py",
    "mkdir -p tests/resources/keys; cd tests/resources/keys; openssl genrsa -out test_private_key.pem 2048; openssl rsa -in test_private_key.pem -pubout -out test_public_key.pem; cd -"
  ],
  "script": [
    "poetry run pytest -vv --cov=peregrine --cov-report xml tests"
  ],
  "after_script": [
    "python-codacy-coverage -r coverage.xml"
  ],
  "env": [
    "global={:GDC_ES_HOST=>\"localhost\"}"
  ]
}