Which of these is NOT a naming convention for discovery in pytest?
Trap 1: test_*.py
Already noted.
Trap 2: *_test.py
This is a standard pytest naming convention.
Trap 3: test_*.py
This is a standard pytest naming convention.
- A
test_*.py
Why wrong: Already noted.
- B
*_test.py
Why wrong: This is a standard pytest naming convention.
- C
suite_*.py
Files starting with 'suite_' are not discovered by default.
- D
test_*.py
Why wrong: This is a standard pytest naming convention.