-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from regro/rattler-maybe
ENH rattler
- Loading branch information
Showing
13 changed files
with
812 additions
and
185 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
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: tests-mamba | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: null | ||
|
||
env: | ||
PY_COLORS: "1" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tests-mamba: | ||
name: tests-mamba | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: conda-incubator/setup-miniconda@a4260408e20b96e80095f42ff7f1a15b27dd94ca # v2 | ||
with: | ||
channels: conda-forge,defaults | ||
channel-priority: strict | ||
show-channel-urls: true | ||
miniforge-version: latest | ||
miniforge-variant: Mambaforge | ||
python-version: 3.11 | ||
use-mamba: true | ||
|
||
- name: configure conda and install code | ||
shell: bash -l {0} | ||
run: | | ||
mamba install --yes --file=requirements.txt | ||
mamba install --yes pytest flaky pip python-build setuptools_scm>=7 setuptools>=45 toml | ||
pip install -e . | ||
- name: test versions | ||
shell: bash -el {0} | ||
run: | | ||
pip uninstall conda-forge-feedstock-check-solvable --yes | ||
[[ $(python setup.py --version) != "0.0.0" ]] || exit 1 | ||
rm -rf dist/* | ||
python setup.py sdist | ||
pip install --no-deps --no-build-isolation dist/*.tar.gz | ||
pushd .. | ||
python -c "import conda_forge_feedstock_check_solvable; assert conda_forge_feedstock_check_solvable.__version__ != '0.0.0'" | ||
popd | ||
pip uninstall conda-forge-feedstock-check-solvable --yes | ||
rm -rf dist/* | ||
python -m build --sdist . --outdir dist | ||
pip install --no-deps --no-build-isolation dist/*.tar.gz | ||
pushd .. | ||
python -c "import conda_forge_feedstock_check_solvable; assert conda_forge_feedstock_check_solvable.__version__ != '0.0.0'" | ||
popd | ||
pip uninstall conda-forge-feedstock-check-solvable --yes | ||
python -m pip install -v --no-deps --no-build-isolation -e . | ||
- name: test w/ mamba | ||
shell: bash -l {0} | ||
run: | | ||
pytest -vv --durations=0 --solver=mamba tests |
Oops, something went wrong.