-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jan Škoda
committed
Jul 24, 2024
1 parent
0ee6297
commit b383327
Showing
3 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[tox] | ||
envlist = py36, py37, py38, py39, py310, flake8 | ||
envlist = py38, py311, py312 | ||
;, flake8 | ||
|
||
[testenv:flake8] | ||
basepython = python | ||
deps = flake8 | ||
commands = flake8 lakeapi tests | ||
; [testenv:flake8] | ||
; basepython = python | ||
; deps = flake8 | ||
; commands = flake8 lakeapi tests | ||
|
||
[testenv] | ||
usedevelop = True | ||
setenv = | ||
PYTHONPATH = {toxinidir} | ||
deps = | ||
-r{toxinidir}/requirements_dev.txt | ||
; If you want to make tox run the tests with the same versions, create a | ||
; requirements.txt with the pinned versions and uncomment the following line: | ||
; deps = | ||
; -r{toxinidir}/requirements.txt | ||
deps = | ||
pytest | ||
commands = | ||
pytest --basetemp={envtmpdir} | ||
|
||
pytest --basetemp={envtmpdir} --ignore=tests/test_orderbook.py | ||
; test_orderbook.py requires numba and is not included in package |