Skip to content

Commit

Permalink
use integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Oct 18, 2023
1 parent 708d090 commit 7866a6b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"copyright_holder": "European Union",
"copyright_year": "2022",
"mypy_strict": "True",
"integration_tests": "False",
"integration_tests": "True",
"_template": "https://github.com/ecmwf-projects/cookiecutter-conda-package"
}
},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
integration-tests:
needs: [combine-environments, unit-tests]
if: |
success() && false
success() && true
runs-on: ubuntu-latest

strategy:
Expand Down
2 changes: 2 additions & 0 deletions ci/environment-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ dependencies:
- pytest
- pytest-cov
# DO NOT EDIT ABOVE THIS LINE, ADD DEPENDENCIES BELOW
- dask-core==2022.11.1
- distributed==2022.11.1
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ dependencies:
- attrs
- boto3
- cachetools
- dask-core==2022.11.1
- distributed==2022.11.1
- dask-core
- distributed
- lz4 # dask distributed needs this to compress / de-compress
- psycopg2
- pydantic>2
- pydantic-settings
- sqlalchemy>=2.0.9
- sqlalchemy-utils
- structlog
- tornado==6.1
- tornado
- typer

0 comments on commit 7866a6b

Please sign in to comment.