Skip to content
Draft
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
1 change: 1 addition & 0 deletions environment.devenv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies:
- pytest-selenium >=4.0.2
- pytest-timeout
- selenium >=4.10.0
- setuptools # TEST TO FIX BUILD TIMEOUT
{% if sys.platform != 'win32' %}
- pytest-xvfb
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def docs(ctx, python_version=None):
@invoke.task
def test(ctx):
print_message("test".format(), color=Fore.BLUE, bright=True)
cmd = "pytest --cov=qmxgraph --timeout=30 -v --durations=10 --color=yes"
cmd = "pytest --cov=qmxgraph --timeout=30 -v --durations=10 --color=yes -x"

import subprocess

Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ def pytest_collection_modifyitems(items):

See pytest-rerunfailures plugin for more information.
"""
return
import os

if os.environ.get("CI", "false") != "true":
Expand Down
Loading