From 2ac362ff536371a5198d7d1b223181b9f1a35d65 Mon Sep 17 00:00:00 2001 From: hay-kot Date: Sat, 1 May 2021 12:55:04 -0800 Subject: [PATCH] disable cache --- .github/workflows/test-all.yml | 12 ++++++------ tests/unit_tests/test_config.py | 5 ----- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index 04f77932a..9cfe00cb6 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -46,12 +46,12 @@ jobs: #---------------------------------------------- # load cached venv if cache exists #---------------------------------------------- - - name: Load cached venv - id: cached-poetry-dependencies - uses: actions/cache@v2 - with: - path: .venv - key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} + # - name: Load cached venv + # id: cached-poetry-dependencies + # uses: actions/cache@v2 + # with: + # path: .venv + # key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} #---------------------------------------------- # install dependencies if cache does not exist #---------------------------------------------- diff --git a/tests/unit_tests/test_config.py b/tests/unit_tests/test_config.py index 92d7df149..4bfe630fa 100644 --- a/tests/unit_tests/test_config.py +++ b/tests/unit_tests/test_config.py @@ -49,11 +49,6 @@ def test_non_default_settings(monkeypatch): assert app_settings.DOCS_URL is None -def test_default_connection_args(): - app_settings = AppSettings() - assert re.match(r"sqlite:////.*mealie/dev/data/mealie_v0.5.0.db", app_settings.DB_URL) - - def test_default_connection_args(monkeypatch): monkeypatch.setenv("DB_ENGINE", "sqlite") app_settings = AppSettings()