Skip to content

Commit 4d0e09e

Browse files
authored
Merge pull request #20 from mbaldessari/make2
More tests
2 parents f216b02 + 6a9d5cf commit 4d0e09e

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
VENV ?= .venv
2-
PYVER ?= 312
32

43
.PHONY: help
54
help: ## Display this help.
@@ -12,7 +11,7 @@ test: ## Run unit tests
1211
python3 -m pip install --upgrade pip && \
1312
pip install -r requirements.txt -r test-requirements.txt && \
1413
pip install tox && \
15-
tox -e py$(PYVER)
14+
tox
1615

1716

1817
.PHONY: clean

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py310,py311,py312,pep8
7+
envlist = py310,py311,py312,py313,py314,pep8
88

99
[testenv]
1010
commands = pytest
1111
deps = -r{toxinidir}/test-requirements.txt
1212

1313
[testenv:pep8]
14-
commands = flake8 {posargs}
14+
commands = flake8 --extend-exclude .venv {posargs}
1515

1616
[flake8]
1717
show-source = True

0 commit comments

Comments
 (0)