10 lines
475 B
Bash
Executable File
10 lines
475 B
Bash
Executable File
#!/bin/bash
|
|
# This is expected to be executed from /imgaug, not from /imgaug/test.
|
|
# That way it is ensured that you use the current code of the library in
|
|
# the imgaug/imgaug/ subfolder, not the installed version of the library.
|
|
#
|
|
# The command below executes all tests.
|
|
# To execute only one specific test, use e.g.
|
|
# pytest ./test/augmenters/test_geometric.py::TestRot90::test_empty_polygons
|
|
python -m pytest ./test --verbose --xdoctest-modules -s --durations=20 -Walways
|