File tree Expand file tree Collapse file tree 4 files changed +7
-25
lines changed Expand file tree Collapse file tree 4 files changed +7
-25
lines changed Original file line number Diff line number Diff line change 17
17
- name : Install dependencies
18
18
run : |
19
19
python -m pip install --upgrade pip
20
- pip install -r requirements.txt
20
+ pip install -r requirements.txt -r requirements.dev.txt
21
21
- name : Run tests with pytest
22
22
run : pytest
Original file line number Diff line number Diff line change
1
+ asyncio==3.4.3
2
+ black==21.5b1
3
+ pytest==6.2.4
4
+ pytest-asyncio==0.15.1
Original file line number Diff line number Diff line change 1
1
aiohttp >= 3.7.4
2
- appdirs == 1.4.4
3
- async-timeout == 3.0.1
4
- asyncio == 3.4.3
5
- attrs == 21.2.0
6
- black == 21.5b1
7
- certifi == 2020.12.5
8
- chardet == 3.0.4
9
- click == 8.0.1
10
- idna == 3.2
11
- iniconfig == 1.1.1
12
- multidict == 4.7.6
13
- mypy-extensions == 0.4.3
14
- packaging == 20.9
15
- pathspec == 0.8.1
16
- pluggy == 1.0.0.dev0
17
- py == 1.10.0
18
- pyparsing == 3.0.0b3
19
- Pypubsub == 4.0.3
20
- pytest == 6.2.4
21
- pytest-asyncio == 0.15.1
22
- regex == 2021.4.4
23
- toml == 0.10.2
24
- yarl == 1.6.3
25
- uplink [aiohttp, pydantic ]== 0.9.4
2
+ uplink [aiohttp, pydantic ]== 0.9.4
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ def parse_requirements(filename: str):
30
30
"requirements.txt" ,
31
31
]
32
32
},
33
+ tests_require = parse_requirements ("requirements.dev.txt" ),
33
34
install_requires = parse_requirements ("requirements.txt" ),
34
35
python_requires = ">=3.8" ,
35
36
classifiers = [
You can’t perform that action at this time.
0 commit comments