-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve performance of common subexpression elimination and parallel …
…testing (#380) * Optimize common_subexpression_elimination * Parallelize pytest * Add comment to explain the motivation behind equality * Improve pytest logging * Remove -v again * fix typing * Add further clarification on comment * add rational why code is still correct * Add deterministic ordering to conftests * Fix types --------- Co-authored-by: Manuel Blatt <[email protected]> Co-authored-by: Manuel Blatt <[email protected]>
- Loading branch information
1 parent
d394012
commit e80b8ca
Showing
4 changed files
with
67 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[pytest] | ||
addopts = -n auto | ||
python_files = test-*.py test_*.py | ||
markers = coreutils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ networkx != 2.8.4 | |
pydot | ||
pygments | ||
pytest !=5.3.4 | ||
pytest-xdist | ||
z3-solver == 4.8.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters