Skip to content

Commit

Permalink
try to make CI run
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhi committed Oct 15, 2020
1 parent d30e9bb commit 8f3d320
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,12 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- name: Install
run: |
pip install wheel
pip install matplotlib==${{ matrix.matplotlib-version}}.*
pip install ".[test]"
# formatting check for a future PR
# - name: Check Formatting
# run: |
# black mpl_interactions --check
# black examples --check
- name: Tests
run: |
pytest --color=yes
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
packages=setuptools.find_packages(),
install_requires=['numpy', 'dask[array]>=2.4.0', 'zmq'],
python_requires='>=3.6',
extra_requires=["pytest"],
extra_requires={
"test": [
"pytest"
]
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 8f3d320

Please sign in to comment.