From bc432b876a38edf3995e1e2d36f23d3710e42727 Mon Sep 17 00:00:00 2001 From: William Luke Date: Thu, 3 Feb 2022 10:56:32 +0300 Subject: [PATCH 1/4] ci: poke --- .drone.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yaml b/.drone.yaml index 02c55a6..3cc0ca9 100644 --- a/.drone.yaml +++ b/.drone.yaml @@ -9,7 +9,7 @@ name: run_tests steps: # Run tests against Python with pytest - - name: engine_test + - name: test image: python:3.7.2 commands: # Install dependencies From 50107b205e2b652dc37dd5972cb66071eae91904 Mon Sep 17 00:00:00 2001 From: William Luke Date: Thu, 3 Feb 2022 11:01:33 +0300 Subject: [PATCH 2/4] docs: add ci status --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 497b79f..344e09c 100644 --- a/Readme.md +++ b/Readme.md @@ -1,5 +1,5 @@ # CIC-Utils - +[![Status](https://ci.grassecon.net/api/badges/grassrootseconomics/cic-utils/status.svg?ref=refs/heads/main)](https://ci.grassecon.net/grassrootseconomics/cic-utils) ## Tests ``` bash ./tests/run_tests.sh From 85a95499fddc6cc2b5a735361496435ff768e85f Mon Sep 17 00:00:00 2001 From: William Luke Date: Thu, 3 Feb 2022 11:05:06 +0300 Subject: [PATCH 3/4] ci: fix drone config filename --- .drone.yaml => .drone.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .drone.yaml => .drone.yml (100%) diff --git a/.drone.yaml b/.drone.yml similarity index 100% rename from .drone.yaml rename to .drone.yml From dd72eb30dca9cb12f4f5d70a9dd05ed4616dda5b Mon Sep 17 00:00:00 2001 From: William Luke Date: Thu, 3 Feb 2022 11:08:39 +0300 Subject: [PATCH 4/4] tests: fix cov --- tests/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests.sh b/tests/run_tests.sh index f7568bc..031dc30 100644 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -1,3 +1,3 @@ pip install -r test_requirements.txt -pytest -x --cov=aiee --cov-fail-under=97 --cov-report term-missing tests \ No newline at end of file +pytest -x --cov=cic_utils --cov-fail-under=97 --cov-report term-missing tests \ No newline at end of file