From baa561c3bf670106a78547ccbf97ac0adbf0136d Mon Sep 17 00:00:00 2001 From: Richert Date: Fri, 14 Oct 2022 13:26:27 -0500 Subject: [PATCH] debugged circle CI config --- .circleci/config.yml | 20 ++++++++++++++++---- CHANGELOG.rst | 5 +++++ 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2e76f82..b810b9f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,7 +24,10 @@ jobs: cd .. - run: pip install --upgrade pip - run: pip install .[dev] - - run: pytest --auto_dir /home/circleci/project/auto-07p pycobi_tests/ + - run: + command: | + cd pycobi_tests + pytest --auto_dir /home/circleci/project/auto-07p test_odesystem.py p37: docker: - image: cimg/python:3.7.12 @@ -44,7 +47,10 @@ jobs: cd .. - run: pip install --upgrade pip - run: pip install .[dev] - - run: pytest --auto_dir /home/circleci/project/auto-07p pycobi_tests/ + - run: + command: | + cd pycobi_tests + pytest --auto_dir /home/circleci/project/auto-07p test_odesystem.py p38: docker: - image: cimg/python:3.8.12 @@ -64,7 +70,10 @@ jobs: cd .. - run: pip install --upgrade pip - run: pip install .[dev] - - run: pytest --auto_dir /home/circleci/project/auto-07p pycobi_tests/ + - run: + command: | + cd pycobi_tests + pytest --auto_dir /home/circleci/project/auto-07p test_odesystem.py p39: docker: - image: cimg/python:3.9.10 @@ -84,7 +93,10 @@ jobs: cd .. - run: pip install --upgrade pip - run: pip install .[dev] - - run: pytest --auto_dir /home/circleci/project/auto-07p pycobi_tests/ + - run: + command: | + cd pycobi_tests + pytest --auto_dir /home/circleci/project/auto-07p test_odesystem.py # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 57f798f..3234207 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Changelog 0.7 --- +0.7.1 +~~~~~ + +- debugged circle CI config + 0.7.0 ~~~~~