Skip to content

Commit

Permalink
fix github workflow for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Bommes committed Oct 25, 2024
1 parent 63d2df3 commit fcfede6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_docker_and_run_unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ jobs:
docker run \
-v ${{ github.workspace }}:/home/video_cap \
lubo1994/mv-extractor:dev \
/bin/bash -c " \
python${{ matrix.python }} -m pip install --upgrade pip \
python${{ matrix.python }} -m pip install . \
python${{ matrix.python }} tests/tests.py \
/bin/bash -c "
python${{ matrix.python }} -m pip install --upgrade pip && \
python${{ matrix.python }} -m pip install . && \
python${{ matrix.python }} tests/tests.py
"
# TODO: if tests pass, push image to registry

0 comments on commit fcfede6

Please sign in to comment.