Qinusty pushed to branch Qinusty/gitlab-ci-duration at BuildStream / buildstream
Commits:
-
7d3f35b7
by Josh Smith at 2018-08-23T15:53:25Z
2 changed files:
Changes:
... | ... | @@ -87,8 +87,8 @@ source_dist: |
87 | 87 |
artifacts:
|
88 | 88 |
paths:
|
89 | 89 |
- coverage-linux/
|
90 |
- tags:
|
|
91 |
- - test
|
|
90 |
+ # tags:
|
|
91 |
+ # - test
|
|
92 | 92 |
|
93 | 93 |
tests-debian-9:
|
94 | 94 |
image: buildstream/testsuite-debian:9-master-114-4cab18e3
|
... | ... | @@ -144,8 +144,8 @@ tests-unix: |
144 | 144 |
paths:
|
145 | 145 |
- coverage-unix/
|
146 | 146 |
- logs-unix/
|
147 |
- tags:
|
|
148 |
- - test
|
|
147 |
+ # tags:
|
|
148 |
+ # - test
|
|
149 | 149 |
|
150 | 150 |
|
151 | 151 |
# Automatically build documentation for every commit, we want to know
|
... | ... | @@ -34,6 +34,7 @@ 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")
|
|
37 | 38 |
def test_autotools_build(cli, tmpdir, datafiles):
|
38 | 39 |
project = os.path.join(datafiles.dirname, datafiles.basename)
|
39 | 40 |
checkout = os.path.join(cli.directory, 'checkout')
|
... | ... | @@ -56,6 +57,7 @@ def test_autotools_build(cli, tmpdir, datafiles): |
56 | 57 |
|
57 | 58 |
# Test running an executable built with autotools
|
58 | 59 |
@pytest.mark.skipif(not IS_LINUX, reason='Only available on linux')
|
60 |
+@pytest.mark.skip(reason="Testing duration")
|
|
59 | 61 |
@pytest.mark.datafiles(DATA_DIR)
|
60 | 62 |
def test_autotools_run(cli, tmpdir, datafiles):
|
61 | 63 |
project = os.path.join(datafiles.dirname, datafiles.basename)
|