From 52fae5f2bfa39830048599fdae8d35b6be7bcbd3 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Mon, 18 May 2020 15:58:17 -0500 Subject: [PATCH] removed flake8 import from unit tests fixed superscript unit tests Signed-off-by: Arthur Lu --- .github/workflows/ut-analysis.yml | 1 - .github/workflows/ut-superscript.yml | 1 - data-analysis/unit-test.py | 0 data-analysis/unit-tests.py | 1 + 4 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 data-analysis/unit-test.py create mode 100644 data-analysis/unit-tests.py diff --git a/.github/workflows/ut-analysis.yml b/.github/workflows/ut-analysis.yml index 02d1b4ce..e8f236cd 100644 --- a/.github/workflows/ut-analysis.yml +++ b/.github/workflows/ut-analysis.yml @@ -29,7 +29,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi working-directory: ${{ env.working-directory }} - name: Test with pytest diff --git a/.github/workflows/ut-superscript.yml b/.github/workflows/ut-superscript.yml index 65d4b8fd..fadce7cb 100644 --- a/.github/workflows/ut-superscript.yml +++ b/.github/workflows/ut-superscript.yml @@ -29,7 +29,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi working-directory: ${{ env.working-directory }} - name: Test with pytest diff --git a/data-analysis/unit-test.py b/data-analysis/unit-test.py deleted file mode 100644 index e69de29b..00000000 diff --git a/data-analysis/unit-tests.py b/data-analysis/unit-tests.py new file mode 100644 index 00000000..0be9125e --- /dev/null +++ b/data-analysis/unit-tests.py @@ -0,0 +1 @@ +assert 1 == 1 \ No newline at end of file