From a4b2b180d32a0920ac69b89a6a22d573af9e162e Mon Sep 17 00:00:00 2001 From: halcy Date: Thu, 1 Dec 2022 00:11:17 +0200 Subject: More moving functions out --- .circleci/config.yml | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index e6accb3..3c677fe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,5 +1,18 @@ version: 2.1 jobs: + run-tests-36: + docker: + - image: cimg/python:3.6 + steps: + - checkout + - run: + name: "Install test deps" + command: "pip install .[test]" + - run: + name: "Run tests" + command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'" + - store_test_results: + path: tests run-tests-37: docker: - image: cimg/python:3.7 @@ -8,9 +21,6 @@ jobs: - run: name: "Install test deps" command: "pip install .[test]" - - run: - name: "Install codecov" - command: "pip install codecov" - run: name: "Run tests" command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'" @@ -42,10 +52,7 @@ jobs: - checkout - run: name: "Install test deps" - command: "pip install .[test]" - - run: - name: "Install codecov" - command: "pip install codecov" + command: "pip install .[test]" - run: name: "Run tests" command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'" @@ -58,10 +65,7 @@ jobs: - checkout - run: name: "Install test deps" - command: "pip install .[test]" - - run: - name: "Install codecov" - command: "pip install codecov" + command: "pip install .[test]" - run: name: "Run tests" command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'" @@ -70,6 +74,7 @@ jobs: workflows: run-tests-workflow: jobs: + - run-tests-36 - run-tests-37 - run-tests-38-cov - run-tests-39 -- cgit v1.2.3