Skip to content

Commit 79a7805

Browse files
authored
Merge pull request #229 from TotallyNotRobots/move-reqs
Move dev requirements to requirements-dev.txt
2 parents df6e434 + f86cf13 commit 79a7805

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/pythonapp.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# This workflow will install Python dependencies, run tests and lint with a single version of Python
23
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
34

@@ -39,7 +40,7 @@ jobs:
3940
- name: Install dependencies
4041
run: |
4142
pip install -U pip setuptools cython wheel
42-
pip install -Ur travis/requirements.txt
43+
pip install -Ur requirements-dev.txt
4344
- name: Test with pytest
4445
run: pytest
4546
env:

travis/requirements.txt renamed to requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ pytest-asyncio==0.14.0
66
pytest-cov==2.10.1
77
pytest-random-order==1.0.4
88
responses==0.12.0
9-
-r ../requirements.txt
9+
-r requirements.txt

0 commit comments

Comments
 (0)