Skip to content

Commit d249ec3

Browse files
committed
fix(test): split requirements-dev.txt from requirements.txt
1 parent 1d6f7e8 commit d249ec3

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
4545
run: python -c "import sys; print(sys.version)"
4646
- name: Install dependencies
4747
run: |
48-
python -m pip install --upgrade pipenv
49-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
48+
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
5049
- name: Lint with flake8
5150
run: |
5251
# stop the build if there are Python syntax errors or undefined names

requirements-dev.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
-r requirements.txt
2+
flake8==7.1.2; python_full_version >= '3.8.1'
3+
iniconfig==2.0.0; python_version >= '3.7'
4+
mccabe==0.7.0; python_version >= '3.6'
5+
packaging==24.2; python_version >= '3.8'
6+
pluggy==1.5.0; python_version >= '3.8'
7+
pycodestyle==2.12.1; python_version >= '3.8'
8+
pyflakes==3.2.0; python_version >= '3.8'
9+
pytest==8.3.5; python_version >= '3.8'

requirements.txt

-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
11
-i https://pypi.org/simple
2-
flake8==7.1.2; python_full_version >= '3.8.1'
3-
iniconfig==2.0.0; python_version >= '3.7'
4-
mccabe==0.7.0; python_version >= '3.6'
5-
packaging==24.2; python_version >= '3.8'
6-
pluggy==1.5.0; python_version >= '3.8'
7-
pycodestyle==2.12.1; python_version >= '3.8'
8-
pyflakes==3.2.0; python_version >= '3.8'
9-
pytest==8.3.5; python_version >= '3.8'
102
sortedcontainers==2.4.0

0 commit comments

Comments
 (0)