Skip to content

Fix ./build-locally.py in feedstocks #2036

Fix ./build-locally.py in feedstocks

Fix ./build-locally.py in feedstocks #2036

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request: null
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -el {0}
jobs:
tests:
name: tests
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Conda env
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822
with:
environment-file: environment.yml
cache-environment: true
create-args: >-
python=3.8
coverage
coveralls
- name: install conda-smithy
run: |
python -m pip install -v --no-build-isolation -e .
git config --global user.email "smithy@smithy.smithy"
git config --global user.name "smithy"
- name: test versions
run: |
pip uninstall conda-smithy --yes
[[ $(python -m setuptools_scm) != "0.0.0" ]] || exit 1
rm -rf dist/*
python -m build --sdist
pip install --no-build-isolation dist/*.tar.gz
pushd ..
python -c "import conda_smithy; assert conda_smithy.__version__ != '0.0.0'"
popd
pip uninstall conda-smithy --yes
rm -rf dist/*
python -m build --sdist . --outdir dist
pip install --no-build-isolation dist/*.tar.gz
pushd ..
python -c "import conda_smithy; assert conda_smithy.__version__ != '0.0.0'"
popd
pip uninstall conda-smithy --yes
python -m pip install -v --no-build-isolation -e .
- name: run tests
run: |
pytest tests --cov conda_smithy --cov-report lcov --cov-report term-missing
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage.lcov