forked from neuropsychology/NeuroKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
42 lines (38 loc) · 738 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tox]
envlist = py35, py36, py37, lint, format
[travis]
python =
3.7: py37
3.6: py36
3.5: py35
[testenv:lint]
basepython = python
commands = invoke lint
[testenv:format]
basepython = python
commands = invoke format --check
[testenv]
passenv = CI TRAVIS TRAVIS_*
setenv =
PYTHONPATH = {toxinidir}
deps =
numpy
pandas
pipenv
coverage
codecov
pytest
mne
pyentrp
nolds
biosppy
cvxopt
PyWavelets
{py27}: pathlib2
; If you want to make tox run the tests with the same versions, commit
; the Pipfile.lock to source control and remove the --skip-lock below
commands_pre =
pipenv install --dev --skip-lock
coverage
codecov
commands = coverage run tests/tests.py