Skip to content

Commit

Permalink
adding env variables to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LAShemilt committed Jun 5, 2023
1 parent ade4438 commit fb085fb
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,21 @@ jobs:

- run: source continuous_integration/scripts/install.sh

- run: |
- name: install dependencies
run: |
set -vxeuo pipefail
python -m pip install .
python -m pip install .[dev]
python -m pip install .[hdf5]
python -m pip list

- run: |
- name: run tests
env:
BASE_URL: http://localhost:3000/api/v3
SCICAT_USERNAME: ingestor
SCICAT_PASSWORD: aman
run: |
set -vxeuo pipefail
coverage run -m pytest -k tests_integration -v
coverage report
env:
BASE_URL: http://localhost:3000/api/v3
SCICAT_USER: ingestor
SCICAT_PASSWORD: aman

0 comments on commit fb085fb

Please sign in to comment.