tests.test_end2end.test_windows_specifics()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nop 0
dl 0
loc 6
rs 10
c 0
b 0
f 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