We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895eb81 commit 218d41dCopy full SHA for 218d41d
.github/workflows/ci.yml
@@ -45,7 +45,7 @@ jobs:
45
run: |
46
python -m pip install -U pip
47
python -m pip install -U setuptools wheel
48
- python -m pip install -U -r requirements.txt pytest-coverage codecov
+ python -m pip install -U .[all] pytest-cov codecov
49
- name: Run Tests
50
run: python -m pytest --cov=httpx_gssapi --cov-report=xml
51
- name: Upload Coverage
requirements.txt
setup.cfg
@@ -27,9 +27,13 @@ packages = httpx_gssapi
27
install_requires =
28
httpx>=0.16,<0.22
29
gssapi
30
-tests_require =
+
31
+[options.extras_require]
32
+test =
33
pytest
34
k5test
35
+all =
36
+ %(test)s
37
38
[options.package_data]
39
* =
0 commit comments