You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by gi...@apache.org on 2020/12/29 13:17:15 UTC

[buildstream] 04/04: .gitlab-ci: tests-spawn, enable non-integration

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch aevri/enable_spawn_ci_6
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 5e5b90196cf5e158c753ff95ecca624fbcea495a
Author: Angelos Evripiotis <je...@bloomberg.net>
AuthorDate: Mon Oct 28 09:46:26 2019 +0000

    .gitlab-ci: tests-spawn, enable non-integration
    
    Enable all the tests that aren't marked as being integration, as we
    ratchet up the required support for spawn mode.
    
    Note that this also doesn't include tests that aren't under the `tests/`
    directory.
---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f669e19..f77c485 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -199,7 +199,8 @@ tests-spawn-multiprocessing-start-method:
     - mkdir -p "${INTEGRATION_CACHE}"
     - useradd -Um buildstream
     - chown -R buildstream:buildstream .
-    - su buildstream -c "tox -- ${PYTEST_ARGS} tests/{artifactcache,cachekey,elements,format,frontend,internals,plugins,sourcecache}"
+    # Note that we're not specifying '--integration' here yet.
+    - su buildstream -c "tox -- --color=yes -n 2 tests/"
 
 # Run type checkers
 mypy: