-
Notifications
You must be signed in to change notification settings - Fork 1
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 #36 from pyiron/coverage
Add Coverage
- Loading branch information
Showing
3 changed files
with
43 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python | ||
- coverage | ||
- conda =24.7.1 | ||
- executorlib =0.0.2 | ||
- executorlib =0.0.2 |
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 @@ | ||
repo_token: bSOnswGFbix3YL7KwicTaQvn85mpjvLqG |
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,40 @@ | ||
name: Coverage | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Conda config | ||
shell: bash -l {0} | ||
run: echo -e "channels:\n - conda-forge\n" > .condarc | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
python-version: '3.12' | ||
miniforge-version: latest | ||
condarc-file: .condarc | ||
environment-file: .ci_support/environment.yml | ||
- name: Test | ||
shell: bash -l {0} | ||
timeout-minutes: 5 | ||
run: | | ||
pip install versioneer[toml]==0.29 | ||
pip install . --no-deps --no-build-isolation | ||
conda create -y -n py312 python=3.12.1 conda=24.7.1 executorlib=0.0.2 | ||
conda activate py312 | ||
pip install versioneer[toml]==0.29 | ||
pip install . --no-deps --no-build-isolation | ||
conda deactivate | ||
coverage run --omit="conda_subprocess/_version.py,tests/*" -m unittest discover tests | ||
- name: Collect Coverage | ||
shell: bash -l {0} | ||
run: coverage xml | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@v2 |