Skip to content
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
6 changes: 3 additions & 3 deletions doc/source/testing/testLauncher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ To run the test you can basically :
# Run all tests
./test.py

# Run all tests in ./tests/HD
./test.py -subdir=./tests/HD
# Run all tests in ./test/HD
./test.py -subdir=./test/HD

# Select in more details the tests containing the "single" keyword
# See pytest documentation for the exact advanced semantic
./test.py -subdir=./tests/HD -k single
./test.py -subdir=./test/HD -k single

# Run in verbose
./test.py -v
Expand Down
4 changes: 2 additions & 2 deletions pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
markers=
default: Test to run by default.
python_files="test_*.py"
junit_logging="all"
junit_log_passing_tests=false
junit_logging=all
junit_log_passing_tests=False
Loading