fix: lint for noarch: python happens after render #2263
Workflow file for this run
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
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@617811f69075e3fd3ae68ca64220ad065877f246 | |
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 "[email protected]" | |
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 |