setup.py: List 'seaborn' as 'test' dependency

Used in Parameter\ Heatmap.ipynb
This commit is contained in:
Kernc
2019-01-02 05:06:56 +01:00
parent cc921ef728
commit 959182d4f9
2 changed files with 4 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ before_install:
- set -e - set -e
install: install:
- pip install . - pip install .[test]
script: script:
- BOKEH_BROWSER=none time catchsegv python setup.py test - BOKEH_BROWSER=none time catchsegv python setup.py test

View File

@@ -40,6 +40,9 @@ if __name__ == '__main__':
'jupytext >= 0.7.0', 'jupytext >= 0.7.0',
'nbconvert', 'nbconvert',
], ],
'test': [
'seaborn',
]
}, },
test_suite="setup._discover_tests", test_suite="setup._discover_tests",
python_requires='>=3.4', python_requires='>=3.4',