We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8aa7ff commit cfd28e9Copy full SHA for cfd28e9
.github/workflows/pytest.yml
@@ -24,9 +24,11 @@ jobs:
24
python-version: ${{ matrix.python-version }}
25
- name: Install dependencies
26
run: |
27
- python -m pip install --upgrade pip
+ # 1. Fresh tooling
28
+ python -m pip install -U pip setuptools wheel
29
+ # 2. Install pytest etc.
30
pip install flake8 pytest pytest-timeout
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
+ # 3. Install our package
32
TEST_WORKFLOW=ON pip install .
33
- name: Lint with flake8
34
if: false
0 commit comments