Qinusty pushed to branch Qinusty/gitlab-ci-duration at BuildStream / buildstream
Commits:
-
87f1cc77
by Josh Smith at 2018-08-23T16:12:36Z
2 changed files:
Changes:
... | ... | @@ -78,7 +78,7 @@ source_dist: |
78 | 78 |
|
79 | 79 |
# Run the tests from the source distribution, We run as a simple
|
80 | 80 |
# user to test for permission issues
|
81 |
- - su buildstream -c 'python3 setup.py test --index-url invalid://uri --addopts "--integration --durations=0 -s"'
|
|
81 |
+ - su buildstream -c 'python3 setup.py test --index-url invalid://uri --addopts "--durations=0 -s"'
|
|
82 | 82 |
|
83 | 83 |
# Go back to the toplevel and collect our reports
|
84 | 84 |
- cd ../..
|
... | ... | @@ -134,7 +134,7 @@ tests-unix: |
134 | 134 |
- cd dist && ./unpack.sh && cd buildstream
|
135 | 135 |
|
136 | 136 |
# Since the unix platform is required to run as root, no user change required
|
137 |
- - python3 setup.py test --index-url invalid://uri --addopts "--durations=0 -s --integration"
|
|
137 |
+ - python3 setup.py test --index-url invalid://uri --addopts "--durations=0 -s"
|
|
138 | 138 |
|
139 | 139 |
# Go back to the toplevel and collect our reports
|
140 | 140 |
- cd ../..
|
... | ... | @@ -34,7 +34,6 @@ def workaround_setuptools_bug(project): |
34 | 34 |
# amhello project for this.
|
35 | 35 |
@pytest.mark.skipif(not IS_LINUX, reason='Only available on linux')
|
36 | 36 |
@pytest.mark.datafiles(DATA_DIR)
|
37 |
-@pytest.mark.skip(reason="Testing duration")
|
|
38 | 37 |
def test_autotools_build(cli, tmpdir, datafiles):
|
39 | 38 |
project = os.path.join(datafiles.dirname, datafiles.basename)
|
40 | 39 |
checkout = os.path.join(cli.directory, 'checkout')
|
... | ... | @@ -57,7 +56,6 @@ def test_autotools_build(cli, tmpdir, datafiles): |
57 | 56 |
|
58 | 57 |
# Test running an executable built with autotools
|
59 | 58 |
@pytest.mark.skipif(not IS_LINUX, reason='Only available on linux')
|
60 |
-@pytest.mark.skip(reason="Testing duration")
|
|
61 | 59 |
@pytest.mark.datafiles(DATA_DIR)
|
62 | 60 |
def test_autotools_run(cli, tmpdir, datafiles):
|
63 | 61 |
project = os.path.join(datafiles.dirname, datafiles.basename)
|