Skip to content

Commit

Permalink
Added tox environment (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
salvaom authored Jun 20, 2023
1 parent 2b5845e commit 50cfe78
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
venv
build
dist
*.egg-info
*.egg-info
.tox
2 changes: 1 addition & 1 deletion src/trackteroid/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

__VERSION__ = "0.1.0rc1"
__VERSION__ = "0.1.0rc2"
2 changes: 2 additions & 0 deletions tests/test_placeholder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_placeholder():
assert True
13 changes: 13 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[tox]
requires =
tox>=4
env_list = py{37,38,39,310,311}
skip_missing_interpreters = true

[testenv]
description = run unit tests
deps =
pytest>=7
pytest-sugar
commands =
pytest {posargs:tests}

0 comments on commit 50cfe78

Please sign in to comment.