|
6 | 6 | PYTHON = 'python' if sys.platform == 'win32' else 'python3' |
7 | 7 | PIP = 'pip' if shutil.which('pip') else 'pip3' |
8 | 8 |
|
9 | | -@pytest.mark.integration_test |
10 | 9 | def test_sdist_all_targets(): |
11 | 10 | "Assert all targets are listed" |
12 | 11 |
|
@@ -45,38 +44,31 @@ def test_sdist_all_targets(): |
45 | 44 | # shutil.rmtree(str(egg.absolute())) |
46 | 45 |
|
47 | 46 |
|
48 | | -@pytest.mark.integration_test |
49 | 47 | def test_sdist_specified_targets(): |
50 | 48 | "Assert only specified targets are listed" |
51 | 49 |
|
52 | 50 |
|
53 | | -@pytest.mark.integration_test |
54 | 51 | def test_bdist_all_targets(): |
55 | 52 | "Assert all targets are listed" |
56 | 53 |
|
57 | 54 |
|
58 | | -@pytest.mark.integration_test |
59 | 55 | def test_bdist_specified_targets(): |
60 | 56 | "Assert only specified targets are listed" |
61 | 57 |
|
62 | 58 |
|
63 | 59 |
|
64 | 60 |
|
65 | | -@pytest.mark.integration_test |
66 | 61 | def test_sdist_all_targets_installs_correctly(): |
67 | 62 | "Assert all targets are listed" |
68 | 63 |
|
69 | 64 |
|
70 | | -@pytest.mark.integration_test |
71 | 65 | def test_sdist_specified_targets_installs_correctly(): |
72 | 66 | "Assert only specified targets are listed" |
73 | 67 |
|
74 | 68 |
|
75 | | -@pytest.mark.integration_test |
76 | 69 | def test_bdist_all_targets_installs_correctly(): |
77 | 70 | "Assert all targets are listed" |
78 | 71 |
|
79 | 72 |
|
80 | | -@pytest.mark.integration_test |
81 | 73 | def test_bdist_specified_targets_installs_correctly(): |
82 | 74 | "Assert only specified targets are listed" |
0 commit comments