Skip to content

Commit

Permalink
Explicit pip install step in CI (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
atmorling authored Oct 31, 2024
1 parent 0058c6e commit 3f00eeb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ jobs:
# https://github.com/mamba-org/setup-micromamba/issues/227
micromamba-version: 1.5.10-0
environment-file: ${{ matrix.env }}
cache-environment: true
cache-downloads: true
init-shell: bash

- name: Install pip dependencies and our package
shell: bash -leo pipefail {0}
run: |
python -m pip install ".[all]"
- name: Test
env:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ docs = [
"sphinx-autoapi",
]
all = [
"ecoscope[analysis,mapping,plotting,test,docs]",
"ecoscope[analysis,async_earthranger,mapping,plotting,test,docs]",
]

[tool.pytest.ini_options]
Expand Down

0 comments on commit 3f00eeb

Please sign in to comment.