Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # tests/test_end2end.py |
||
2 | """Module for end2end testing. |
||
3 | |||
4 | Meant to serve as template in case end2end tesing is sensible. |
||
5 | Uses pytest markers to require manual test inclusion. |
||
6 | """ |
||
7 | import pytest |
||
8 | |||
9 | |||
10 | @pytest.mark.e2e |
||
11 | def test_unix_specifics(): |
||
12 | """Test unix specific things.""" |
||
13 | # pylint: disable=comparison-of-constants |
||
14 | # remove this, once the test does someting meaningfull |
||
15 | assert "unix" in "Do some unix tests" |
||
16 | |||
17 | |||
18 | @pytest.mark.e2e |
||
19 | def test_windows_specifics(): |
||
20 | """Test windows specific things.""" |
||
21 | # pylint: disable=comparison-of-constants |
||
22 | # remove this, once the test does someting meaningful |
||
23 | assert "unix" not in "Do some windows tests" |
||
24 |