Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include src/bison/c/bisondynlib.h
include src/bison/c/*
8 changes: 8 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# pytest.ini
[pytest]
minversion = 6.0
addopts = -ra -q
python_files = tests.py test_*.py *_tests.py
testpaths =
src
tests
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
six
Cython
pytest
pytest-cov
19 changes: 19 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py39,py38

[pytest]
minversion = 6.0
addopts = -ra -q
testpaths =
src

[testenv]
deps =
pytest
pytest-cov

commands =
pip install -r requirements.txt
pytest