diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index abea6764a..a4b2f75a9 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -24,9 +24,9 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.11"] # ["3.8", "3.9", "3.10", "3.11", "3.12"] - dependencies: [normal] # [normal, minimal] - database: [postgresql] # maybe check different versions of postgres ? + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + dependencies: [normal, minimal] + database: [postgresql] steps: - uses: actions/checkout@v3 @@ -49,7 +49,7 @@ jobs: make installjs make install vendors - name: run tests - run: pytest . + run: pytest -vx . env: DJANGO_SETTINGS_MODULE: 'umap.tests.settings' UMAP_SETTINGS: 'umap/tests/settings.py'