Skip to content

Commit

Permalink
install deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed Jun 28, 2024
1 parent ffdd677 commit b7dd17f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/system-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
cache: 'pip'

- name: Install Dependencies
run: pip install -r test/requirements.ci.txt
shell: bash

- name: Run System Testing
run: ./ci/system_testing.sh
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion ci/system_testing.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

./ci/install_dependencies.sh
# ./ci/install_dependencies.sh

set -x
mkdir ./test-log
Expand Down

0 comments on commit b7dd17f

Please sign in to comment.