Skip to content

Commit

Permalink
Update tox settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mportesdev committed Dec 15, 2022
1 parent b0a82f5 commit e9401cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "helper-auth"
version = "0.1.0"
version = "0.2.0"
description = "Requests authentication using existing helpers"
readme = "README.md"
authors = ["Michal Porteš <[email protected]>"]
Expand All @@ -12,7 +12,7 @@ python = "^3.7"
requests = "^2"

[tool.poetry.group.dev.dependencies]
pytest = "^7"
tox = "^4"

[build-system]
requires = ["poetry-core"]
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[tox]
isolated_build = true
envlist = py37,py38,py39,py310,py311,pypy3
envlist = black,py37,py38,py39,py310,py311,pypy3
skip_missing_interpreters = true

[testenv]
deps = pytest
commands = pytest

[testenv:black]
deps = black
commands = black helper_auth tests

0 comments on commit e9401cd

Please sign in to comment.