Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/mx-1500 speed-up wikidata tests #68

Merged
merged 5 commits into from
Jan 23, 2024
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- pytest plugins for random order and parallelized test execution

### Changes

- `mex.bat test` uses random order and xdist plugins by default

### Deprecated

### Removed
Expand Down
5 changes: 3 additions & 2 deletions mex.bat
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ echo linting all files
pre-commit run --all-files
if %errorlevel% neq 0 exit /b %errorlevel%

@REM run the pytest test suite with unit and integration tests
@REM run the pytest test suite with unit and integration tests in random order
@REM distributed across all available CPU cores
echo running all tests
poetry run pytest
poetry run pytest --random-order-bucket=global --numprocesses=auto --dist=worksteal
exit /b %errorlevel%


Expand Down
Loading
Loading