-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathtox-ci-py39.ini
More file actions
39 lines (31 loc) · 1012 Bytes
/
tox-ci-py39.ini
File metadata and controls
39 lines (31 loc) · 1012 Bytes
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
; This tox config only exists to support running from Python 3.9.
[tox]
; Hyperscan does not have wheels for PyPy 3.9.
envlist =
py39
py39-hyperscan
py39-re2
pypy39
isolated_build = True
[testenv]
commands = python -m unittest discover -t . -s tests/ {posargs}
package = wheel
[testenv:ci-base]
; Placeholder env for base (only simple backend) for CI.
[testenv:ci-hyperscan]
; Hyperscan env for CI.
extras = hyperscan
install_command = python -I -m pip install --only-binary=hyperscan {opts} {packages}
[testenv:ci-re2]
; Re2 env for CI.
extras = google-re2
install_command = python -I -m pip install --only-binary=google-re2 {opts} {packages}
[testenv:py39-hyperscan]
extras = hyperscan
install_command = python -I -m pip install --only-binary=hyperscan {opts} {packages}
[testenv:py39-re2]
extras = google-re2
install_command = python -I -m pip install --only-binary=google-re2 {opts} {packages}
;; Compiling hyperscan fails on PyPy 3.9.
;[testenv:pypy39-hyperscan]
;extras = hyperscan