We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4b9a92 commit 8f45dc3Copy full SHA for 8f45dc3
2 files changed
.github/workflows/main.yml
@@ -34,6 +34,7 @@ jobs:
34
- name: Install dependencies
35
run: |
36
pip install -e .
37
+ pip install --group test
38
39
- uses: BSFishy/pip-action@v1
40
with:
pyproject.toml
@@ -40,11 +40,6 @@ dependencies = [
'beautifulsoup4',
41
'decorator',
42
'geocoder', # map
43
- 'pytest', # testing
44
- 'pytest-cov<4', # testing
45
- 'responses', # testing
46
- #'mkdocs', # docs
47
- #'mkdocs-material', # docs
48
'python-magic', # figure embed
49
'pillow',
50
]
@@ -94,3 +89,13 @@ omit = ["**/*test.py"]
94
89
addopts = "--cov=customblocks"
95
90
96
91
92
+[dependency-groups]
93
+test = [
+ "pytest",
+ "pytest-cov",
+ "responses",
97
+]
98
+docs = [
99
+ #'mkdocs', # docs
100
+ #'mkdocs-material', # docs
101
0 commit comments