diff --git a/.circleci/config.yml b/.circleci/config.yml index 73c36d6..eac480e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,14 +27,11 @@ jobs: COMPOSER_MEMORY_LIMIT: -1 - run: name: "run test" - command: mkdir -p build/logs && vendor/bin/phpspec run -fjunit > build/logs/junit.xml - - run: - name: "debug" - command: cat build/logs/junit.xml + command: mkdir -p build/tests && vendor/bin/phpspec run -fjunit > build/tests/junit.xml - store_artifacts: path: build/logs/ - store_test_results: - path: build/logs/junit.xml + path: build/tests/ - coveralls/upload