Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniBodor committed Jun 18, 2024
1 parent 47873f1 commit 47614f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ jobs:
registry: ghcr.io
username: wbaccinelli
password: ${{ secrets.GITHUB_TOKEN }}
- name: Conditionally add specific branch of eitprocessing
if: inputs.remote == true
run: poetry add git+https://github.com/EIT-ALIVE/eitprocessing.git#${{ inputs.caller_branch }}
- name: Run Tests in Container
run: >
echo "action triggered by: ${{github.event_name}}";
Expand All @@ -62,6 +59,9 @@ jobs:
sh -c 'set -xe ;
cd /ci ;
python3 -m pip install --upgrade pip poetry ;
if [ "${{ inputs.remote }}" = true ]; then
poetry add git+https://github.com/EIT-ALIVE/eitprocessing.git#${{ inputs.caller_branch }} ;
fi
poetry install --with test ;
poetry run pytest -v tests/unit_tests ;
python -m build'
Expand Down

0 comments on commit 47614f5

Please sign in to comment.