From 633f84202a883508034cae8c3528b4dcfe6dddbc Mon Sep 17 00:00:00 2001 From: Julius Date: Mon, 19 Nov 2018 10:56:17 +0100 Subject: [PATCH] Added test config for riddle2 --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 40a6e43..c56a9c4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -45,11 +45,17 @@ jobs: # https://pytest.org # https://nose.readthedocs.io - run: - name: run tests + name: run tests for riddle.py command: | . venv/bin/activate python riddle.py -t Python + - run: + name: run tests for riddle2.py + command: | + . venv/bin/activate + python riddle2.py + - store_artifacts: path: test-reports destination: test-reports