From 170bb28422f2e5cab03cceda5293429095733fb1 Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:09:28 +1000 Subject: [PATCH 01/11] Updated config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9a7eb7b..e3ac473 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,7 @@ jobs: # A basic unit of work in a run - run: command: | python3 setup.py sdist bdist_wheel - pip3 install dist/tbtamr-*-py3-none-any.whl + pip3 install . tbtamr setup pytest From fed7eebd70f62646319b72d4c4c10055c50ecf65 Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:13:50 +1000 Subject: [PATCH 02/11] Updated config.yml --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e3ac473..5c57aab 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,9 +13,7 @@ jobs: # A basic unit of work in a run - run: command: | python3 setup.py sdist bdist_wheel - pip3 install . - tbtamr setup - pytest + - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ path: test-results From 387a17061c85128156ff5740e91d1b1e42155f5a Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:15:53 +1000 Subject: [PATCH 03/11] Updated config.yml --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5c57aab..5b1dc97 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,6 +13,7 @@ jobs: # A basic unit of work in a run - run: command: | python3 setup.py sdist bdist_wheel + pip3 install dist/tbtamr-*-py3-none-any.whl - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ From 979973e6b04d1058e25217112692d6c007c261b2 Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:17:17 +1000 Subject: [PATCH 04/11] Updated config.yml --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5b1dc97..9077962 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,6 +14,7 @@ jobs: # A basic unit of work in a run command: | python3 setup.py sdist bdist_wheel pip3 install dist/tbtamr-*-py3-none-any.whl + tbtamr --help - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ From 0b7cfde28a3a1b07c2e4a567d235ab75723340ef Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:20:51 +1000 Subject: [PATCH 05/11] Updated config.yml --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9077962..c10ecbc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,6 +15,7 @@ jobs: # A basic unit of work in a run python3 setup.py sdist bdist_wheel pip3 install dist/tbtamr-*-py3-none-any.whl tbtamr --help + tbtamr setup - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ From 3b95f50b1d7d68a097ead6092043f095b7e5b29b Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:47:00 +1000 Subject: [PATCH 06/11] Updated config.yml --- .circleci/config.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c10ecbc..ace7dee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,12 +10,13 @@ jobs: # A basic unit of work in a run PIPENV_VENV_IN_PROJECT: true steps: # steps that comprise the `build` job - checkout # check out source code to working directory - - run: - command: | - python3 setup.py sdist bdist_wheel - pip3 install dist/tbtamr-*-py3-none-any.whl - tbtamr --help - tbtamr setup + - pytest + # - run: + # command: | + # python3 setup.py sdist bdist_wheel + # pip3 install dist/tbtamr-*-py3-none-any.whl + # tbtamr --help + # tbtamr setup - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ From 41efa26d0dfbb512bc9e41e43b33dadd536693b3 Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 05:50:35 +1000 Subject: [PATCH 07/11] Updated config.yml --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ace7dee..ecc6a21 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,13 +10,13 @@ jobs: # A basic unit of work in a run PIPENV_VENV_IN_PROJECT: true steps: # steps that comprise the `build` job - checkout # check out source code to working directory - - pytest - # - run: - # command: | - # python3 setup.py sdist bdist_wheel - # pip3 install dist/tbtamr-*-py3-none-any.whl - # tbtamr --help - # tbtamr setup + - run: + command: | + python3 setup.py sdist bdist_wheel + pip3 install dist/tbtamr-*-py3-none-any.whl + ls + # tbtamr --help + # tbtamr setup - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ From 605d3b223e9c7273672c953356a07593392df7ea Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 06:55:50 +1000 Subject: [PATCH 08/11] Updated config.yml --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ecc6a21..30b66d6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,12 +12,14 @@ jobs: # A basic unit of work in a run - checkout # check out source code to working directory - run: command: | + conda create -n tbtamr python=3.9 + source activate tbtamr python3 setup.py sdist bdist_wheel pip3 install dist/tbtamr-*-py3-none-any.whl ls # tbtamr --help # tbtamr setup - + - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ path: test-results From 5a46afd824b52a5a18be324c4f7b8006717d07ed Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 06:57:09 +1000 Subject: [PATCH 09/11] Updated config.yml --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 30b66d6..dae4deb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,8 +16,7 @@ jobs: # A basic unit of work in a run source activate tbtamr python3 setup.py sdist bdist_wheel pip3 install dist/tbtamr-*-py3-none-any.whl - ls - # tbtamr --help + tbtamr --help # tbtamr setup From 1c9e085ca71612296bcebdcd17f783c129a3e4e9 Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 06:58:50 +1000 Subject: [PATCH 10/11] Updated config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dae4deb..6cd4def 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ jobs: # A basic unit of work in a run python3 setup.py sdist bdist_wheel pip3 install dist/tbtamr-*-py3-none-any.whl tbtamr --help - # tbtamr setup + tbtamr setup - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/ From 9fb44af1dd011bab84e1f6504111aa26562c6466 Mon Sep 17 00:00:00 2001 From: Kristy Horan Date: Fri, 15 Sep 2023 06:59:23 +1000 Subject: [PATCH 11/11] Updated config.yml --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6cd4def..f559700 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,7 @@ jobs: # A basic unit of work in a run pip3 install dist/tbtamr-*-py3-none-any.whl tbtamr --help tbtamr setup + pytest - store_test_results: # Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/