Skip to content

Commit

Permalink
ci: fix py test requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
lumina37 committed Mar 7, 2025
1 parent af17b5f commit 0901a50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
- name: Run Python testing
shell: bash
run: |
python3 -m pip install -r ./source/binding/Python/requirements.txt
python3 -m pip install ./source/binding/Python
python3 ./test/python/binding_test.py ./source/binding/Python ./install
python3 ./test/agent/agent_main_test.py ./source/binding/Python ./install
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r ./source/binding/Python/requirements.txt
python3 -m pip install ./source/binding/Python
python3 ./test/python/binding_test.py ./source/binding/Python ./install
python3 ./test/agent/agent_main_test.py ./source/binding/Python ./install
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -r ./source/binding/Python/requirements.txt
python3 -m pip install ./source/binding/Python
python3 ./test/python/binding_test.py ./source/binding/Python ./install
python3 ./test/agent/agent_main_test.py ./source/binding/Python ./install
Expand Down

0 comments on commit 0901a50

Please sign in to comment.