Spaces:
Sleeping
Sleeping
rmm
commited on
Commit
·
da57449
1
Parent(s):
793975a
fix: tests need main requirements installed too
Browse files
.github/workflows/python-pytest.yml
CHANGED
@@ -22,7 +22,7 @@ jobs:
|
|
22 |
- name: Install dependencies
|
23 |
run: |
|
24 |
python -m pip install --upgrade pip
|
25 |
-
pip install
|
26 |
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
|
27 |
# if [ -f pyproject.toml ]; then pip install -r pyproject.toml; fi
|
28 |
#- name: Lint with flake8
|
|
|
22 |
- name: Install dependencies
|
23 |
run: |
|
24 |
python -m pip install --upgrade pip
|
25 |
+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
26 |
if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
|
27 |
# if [ -f pyproject.toml ]; then pip install -r pyproject.toml; fi
|
28 |
#- name: Lint with flake8
|