-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: apply regex patterns to pydantic fields right (#339)
* fix: apply regex patterns to pydantic fields right Pattern should match the **entire** string Signed-off-by: Vassilis Vassiladis <[email protected]> * chore: tests should display the entire error message Signed-off-by: Vassilis Vassiladis <[email protected]> --------- Signed-off-by: Vassilis Vassiladis <[email protected]>
- Loading branch information
1 parent
1858e07
commit a49f425
Showing
3 changed files
with
76 additions
and
15 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
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 |
---|---|---|
|
@@ -62,14 +62,14 @@ commands= | |
{test,testA}-ibm: epatch.py -s0 -e CAFParameterisation.package stage2.DetermineShape...stage2.Montage --platform=paragon -x | ||
|
||
# Unit-tests | ||
test: pytest --log-level=10 -n8 tests/ | ||
test: pytest -vv --log-level=10 -n8 tests/ | ||
|
||
# Same unit-tests but split 3-ways to enable runnin them in parallel Travis jobs | ||
testA: pytest --timeout=240 --log-level=10 -n8 --ignore-glob=*test_control.py --ignore-glob=*test_engines.py tests/ --durations=0 | ||
# Same unit-tests but split 3-ways to enable running them in parallel Travis jobs | ||
testA: pytest -vv --timeout=240 --log-level=10 -n8 --ignore-glob=*test_control.py --ignore-glob=*test_engines.py tests/ --durations=0 | ||
|
||
testB: pytest --timeout=240 --log-level=10 -n8 tests/test_control.py --durations=0 | ||
testB: pytest -vv --timeout=240 --log-level=10 -n8 tests/test_control.py --durations=0 | ||
|
||
testC: pytest --timeout=240 --log-level=10 -n8 tests/test_engines.py --durations=0 | ||
testC: pytest -vv --timeout=240 --log-level=10 -n8 tests/test_engines.py --durations=0 | ||
|
||
{test,testC}-ibm: git clone [email protected]:hartreechem/Synthetic.package.git | ||
{test,testC}-ibm: elaunch.py --nostamp Synthetic.package | ||
|