Skip to content

Commit

Permalink
added circle ci again
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Jan 17, 2024
1 parent 0561b48 commit 52a35e8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
jobs:
# test:
build:
docker:
- image: openmc/openmc:develop
steps:
- checkout
- run:
name: install
command: |
pip install --upgrade pip
pip install .[tests]
apt-get update -y && apt-get install -y curl
- run:
name: run tests
command: |
pytest tests -v --cov=openmc_plasma_source --cov-append --cov-report term --cov-report xml
- store_test_results:
path: test-reports

- run: bash <(curl -s https://codecov.io/bash)

0 comments on commit 52a35e8

Please sign in to comment.