Skip to content

Commit

Permalink
fix requ install (#176)
Browse files Browse the repository at this point in the history
* fix requ install

* f
  • Loading branch information
sambles authored Dec 12, 2023
1 parent d6933b3 commit 40b83bf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pip-tools
pip-compile tests/requirements.in -o tests/requirements.txt
pip install -r tests/requirements.txt
wget $BASE_URL/tests/requirements.in
pip-compile requirements.in -o requirements.txt
pip install -r requirements.txt
env:
BASE_URL: 'https://raw.githubusercontent.com/OasisLMF/OasisPiWind/main'

- name: Run Checks
if: inputs.generate_results != 'true'
Expand Down

0 comments on commit 40b83bf

Please sign in to comment.