Skip to content

Commit

Permalink
Retry failed integration tests (#674)
Browse files Browse the repository at this point in the history
## Changes
Retry failed integration tests

## Tests
- [X] `make test` run locally
- [X] `make fmt` applied
- [X] relevant integration tests applied
- [X] `make dev integration` applied
  • Loading branch information
hectorcast-db authored Jun 12, 2024
1 parent 455a14c commit f50af60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test:
pytest -m 'not integration and not benchmark' --cov=databricks --cov-report html tests

integration:
pytest -n auto -m 'integration and not benchmark' --dist loadgroup --cov=databricks --cov-report html tests
pytest -n auto -m 'integration and not benchmark' --reruns 2 --dist loadgroup --cov=databricks --cov-report html tests

benchmark:
pytest -m 'benchmark' tests
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
extras_require={"dev": ["pytest", "pytest-cov", "pytest-xdist", "pytest-mock",
"yapf", "pycodestyle", "autoflake", "isort", "wheel",
"ipython", "ipywidgets", "requests-mock", "pyfakefs",
"databricks-connect"],
"databricks-connect", "pytest-rerunfailures"],
"notebook": ["ipython>=8,<9", "ipywidgets>=8,<9"]},
author="Serge Smertin",
author_email="[email protected]",
Expand Down

0 comments on commit f50af60

Please sign in to comment.