From d728c245f3221f7d5bff160377aa5c94ead34b7b Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 14 Jun 2018 09:45:28 -0400 Subject: [PATCH] Factor out the duplicate test step command --- .circleci/config.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f5076b536..164e08214 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,7 +73,7 @@ jobs: - run: name: "Run test suite" - command: | + command: &RUN_TESTS | # Run the test suite as a non-root user. This is the expected # usage some small areas of the test suite assume non-root # privileges (such as unreadable files being unreadable). @@ -142,12 +142,4 @@ jobs: - run: name: "Run test suite" - command: | - # Run the test suite as a non-root user. This is the expected - # usage some small areas of the test suite assume non-root - # privileges (such as unreadable files being unreadable). - # - # Also run with /tmp as a workdir because the non-root user won't - # be able to create the tox working filesystem state in the source - # checkout because it is owned by root. - sudo -u nobody /tmp/tests/bin/tox -c /tmp/project/tox.ini --workdir /tmp -e py27 + command: *RUN_TESTS