Skip to content

Commit

Permalink
Fix the pytest-bdd after rebase
Browse files Browse the repository at this point in the history
Fix the tests for tests workflow

Signed-off-by: Kairo de Araujo <[email protected]>
  • Loading branch information
Kairo de Araujo committed Aug 3, 2023
1 parent ebb19b8 commit 58dd19f
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 8 deletions.
47 changes: 43 additions & 4 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ imagesize==1.4.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3
iniconfig==2.0.0; python_version >= '3.7'
isort==5.12.0
jinja2==3.1.2; python_version >= '3.7'
jsonschema==4.18.4; python_version >= '3.8'
jsonschema==4.18.6; python_version >= '3.8'
jsonschema-specifications==2023.7.1; python_version >= '3.8'
m2r==0.3.1
mako==1.2.4; python_version >= '3.7'
markdown-it-py==3.0.0; python_version >= '3.8'
markupsafe==2.1.3; python_version >= '3.7'
mccabe==0.7.0; python_version >= '3.6'
Expand All @@ -44,6 +45,8 @@ mypy-extensions==1.0.0; python_version >= '3.5'
myst-parser==2.0.0
nodeenv==1.8.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'
packaging==23.1; python_version >= '3.7'
parse==1.19.1
parse-type==0.6.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
pathspec==0.11.2; python_version >= '3.7'
pbr==5.11.1; python_version >= '2.6'
platformdirs==3.10.0; python_version >= '3.7'
Expand All @@ -56,6 +59,7 @@ pyflakes==3.1.0; python_version >= '3.8'
pygments==2.15.1; python_version >= '3.7'
pyproject-api==1.5.3; python_version >= '3.7'
pytest==7.4.0
pytest-bdd==6.1.1
pyyaml==6.0.1; python_version >= '3.6'
referencing==0.30.0; python_version >= '3.8'
requests==2.31.0; python_version >= '3.7'
Expand All @@ -81,6 +85,7 @@ sphinxcontrib-serializinghtml==1.1.5
stevedore==5.1.0; python_version >= '3.8'
tomli==2.0.1; python_version < '3.11'
tox==4.6.4
typing-extensions==4.7.1; python_version >= '3.7'
urllib3==2.0.4; python_version >= '3.7'
virtualenv==20.24.2; python_version >= '3.7'
voluptuous==0.13.1
Expand Down Expand Up @@ -108,7 +113,6 @@ redis==4.6.0
rsa==4.9; python_version >= '3.6' and python_version < '4'
sqlalchemy==2.0.19
starlette==0.27.0; python_version >= '3.7'
typing-extensions==4.7.1; python_version >= '3.7'
tzdata==2023.3; python_version >= '2'
uvicorn==0.23.2
vine==5.0.0; python_version >= '3.6'
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ commands =

[testenv:test]
commands =
coverage run --omit='tests/*' -m pytest tests/unit/ --gherkin-terminal-reporter -vv
pytest tests/bdd/ --gherkin-terminal-reporter -vv
coverage run --omit='tests/*' -m pytest tests/unit/ -vv
coverage xml -i
coverage report
pytest tests/bdd/ --gherkin-terminal-reporter -vv

[testenv:requirements]
description="Check if `make requirements` is up-to-date."
Expand Down

0 comments on commit 58dd19f

Please sign in to comment.