File: test_notes.txt

package info (click to toggle)
bioxtasraw 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 258,948 kB
  • sloc: python: 78,311; makefile: 27; sh: 21
file content (22 lines) | stat: -rw-r--r-- 490 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Tests rely on pytest, so make sure you install that.

Run all tests (from the Tests directory) (~630 s):
pytest

Run all fast tests (~60 s):
pytest -k "not slow and not very_slow"

Run all but very slow tests (~120 s)
pytest -m "not very_slow"


When making tests, use:
@pytest.mark.new

To mark new tests. And then use:
pytest -m "new"

To run just the new tests, instead of having to rerun the entire set of tests
every time you add/modify one.

use -s to allow things to print to screen