Skip to content

Commit

Permalink
Merge pull request #36 from pyiron/coverage
Browse files Browse the repository at this point in the history
Add Coverage
  • Loading branch information
jan-janssen authored Sep 29, 2024
2 parents f381e3d + 6ef749d commit 7c1c283
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci_support/environment.yml
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
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo_token: bSOnswGFbix3YL7KwicTaQvn85mpjvLqG
40 changes: 40 additions & 0 deletions .github/workflows/coverage.yml
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

0 comments on commit 7c1c283

Please sign in to comment.