diff --git a/.github/workflows/pr_checks.yml b/.github/workflows/pr_checks.yml index 07deb7c052d..b5429193dc7 100644 --- a/.github/workflows/pr_checks.yml +++ b/.github/workflows/pr_checks.yml @@ -155,8 +155,10 @@ jobs: uses: actions/checkout@v2 - name: Run unit test suite - run: make pytest-unit - + shell: bash -l {0} + run: | + docker compose up -d fidesctl + docker compose run --no-deps --rm fidesctl pytest -x -m unit - name: Run integration test suite run: make pytest-integration env: diff --git a/fidesctl/src/fidesctl/core/annotate_dataset.py b/fidesctl/src/fidesctl/core/annotate_dataset.py index 9d18770e141..e932a8749eb 100644 --- a/fidesctl/src/fidesctl/core/annotate_dataset.py +++ b/fidesctl/src/fidesctl/core/annotate_dataset.py @@ -1,4 +1,5 @@ """ +TEST This script is a utility for interactively annotating data categories in the dataset manifest """