Skip to content

Commit

Permalink
explicitly install requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Dec 21, 2023
1 parent 88e34f8 commit e459e30
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
python-version: "3.11"

- name: Install dependencies
run: python -m pip install --upgrade pip
run: |
python -m pip install --upgrade pip
python -m pip install -r ./halmos/requirements.txt
- name: Install Halmos
run: python -m pip install -e ./halmos
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-ffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Install Halmos
run: pip install -e .
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-long.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Install Halmos
run: pip install -e .
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Install Halmos
run: pip install -e .
Expand Down

0 comments on commit e459e30

Please sign in to comment.