Skip to content

Commit 4b4b9fd

Browse files
author
Bilal Al
committed
polish
1 parent b23fd01 commit 4b4b9fd

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ exclude=tests/*
1212
test=pytest
1313

1414
[tool:pytest]
15-
addopts = --verbose --cov=splitio --cov-report xml -k ClientTests
15+
addopts = --verbose --cov=splitio --cov-report xml
1616
python_classes=*Tests
1717

1818
[build_sphinx]

setup.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,24 @@
77
TESTS_REQUIRES = [
88
'flake8',
99
'pytest==7.0.1',
10-
'pytest-mock>=3.5.1',
11-
'coverage==6.2',
12-
'pytest-cov',
13-
'importlib-metadata==4.2',
10+
'pytest-mock==3.11.1',
11+
'coverage',
12+
'pytest-cov==4.1.0',
13+
'importlib-metadata==6.7',
1414
'tomli==1.2.3',
1515
'iniconfig==1.1.1',
16-
'attrs==22.1.0'
16+
'attrs==22.1.0',
17+
'pytest-asyncio==0.21.0'
1718
]
1819

1920
INSTALL_REQUIRES = [
2021
'requests>=2.9.1',
2122
'pyyaml>=5.4',
2223
'docopt>=0.6.2',
2324
'enum34;python_version<"3.4"',
24-
'bloom-filter2>=2.0.0'
25+
'bloom-filter2>=2.0.0',
26+
'aiohttp>=3.8.4',
27+
'aiofiles>=23.1.0'
2528
]
2629

2730
with open(path.join(path.abspath(path.dirname(__file__)), 'splitio', 'version.py')) as f:

0 commit comments

Comments
 (0)