-
Notifications
You must be signed in to change notification settings - Fork 10
/
tox.ini
45 lines (40 loc) · 1.08 KB
/
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
43
44
45
[tox]
envlist = {py36, py37, py38, py39}#-{darwin}#{darwin, linux} # darwin,
indexserver =
preinstall = https://pypi.python.org/simple
[testenv]
deps =
:preinstall: numpy==1.19.5
:preinstall: cython
-rrequirements_tox.txt
commands=
pytest gators -m "not koalas"
; [tox]
; envlist = {py36}, py37, py38, py39}-{darwin, linux, windows} # darwin,
; indexserver =
; preinstall = https://pypi.python.org/simple
;
; platform = linux: linux
; windows: win32
; macos: darwin
;
; [gh-actions]
; python =
; 3.6: py36
; 3.7: py37
; 3.8: py38
; 3.9: py39
; deps =
; linux: :preinstall: numpy==1.19.5
; linux: :preinstall: cython
; linux: -rrequirements_tox.txt
; darwin: :preinstall: numpy==1.19.5
; darwin: :preinstall: cython
; darwin: -rrequirements_tox.txt
; windows: :preinstall: numpy==1.19.5
; windows: :preinstall: cython
; windows: -rrequirements_tox.txt
; commands=
; darwin: pytest gators -m "not koalas"
; linux: pytest gators -m "not koalas"
; windows: pytest gators -m "not koalas"