We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae83208 commit d222409Copy full SHA for d222409
2 files changed
.github/workflows/ci.yml
@@ -27,9 +27,8 @@ jobs:
27
python-version: ${{ matrix.python-version }}
28
29
30
- - name: Install pipenv
31
- run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
32
- - run: pipenv install --dev --deploy
+ - name: Install dependencies
+ run: pip install -e .[test]
33
34
- name: Test with pytest
35
run: pipenv run pytest
setup.py
@@ -24,9 +24,7 @@
24
REQUIRED = ["requests", "pygments"]
25
26
# What packages are optional?
-EXTRAS = {
- "color": ["pygments"],
-}
+EXTRAS = {"color": ["pygments"], "test": ["pytest"]}
here = os.path.abspath(os.path.dirname(__file__))
0 commit comments