-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fail fast, add minimal reqs and different python versions
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
almet
Author
Member
|
||
make install vendors | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
almet
Author
Member
|
||
- name: run tests | ||
run: pytest . | ||
run: pytest -vx . | ||
env: | ||
DJANGO_SETTINGS_MODULE: 'umap.tests.settings' | ||
UMAP_SETTINGS: 'umap/tests/settings.py' | ||
|
python -m pip install -e ".[dev,test]"
=>make develop
?