Skip to content

Commit

Permalink
Fix pip install on windows (myhdl#422)
Browse files Browse the repository at this point in the history
* Test

* Move from python -m pip to just pip
  • Loading branch information
davekeeshan authored Oct 5, 2023
1 parent 7e235fc commit 4081474
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_checkin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ jobs:
echo "C:\ProgramData\Chocolatey\bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade -r requirements.txt
python -m pip install .
pip install --upgrade pip
pip install --upgrade -r requirements.txt
pip install .
- name: Run Tests
run: |
make ${{ env.CI_TARGET }}
Expand Down
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[pytest]
filterwarnings =
error::DeprecationWarning
error::pytest.PytestWarning
error::pytest.PytestWarning

0 comments on commit 4081474

Please sign in to comment.