Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: moeyensj/thor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7b855c31fe2872f4bb491309ec0b6f1730381ca5
Choose a base ref
..
head repository: moeyensj/thor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 25b5b34d3cfc86c1d160a9f1655957661c98ae0d
Choose a head ref
Showing with 6 additions and 6 deletions.
  1. +2 −2 .github/workflows/conda-build-lint-test.yml
  2. +2 −2 .github/workflows/docker-build-lint-test.yml
  3. +2 −2 .github/workflows/pip-build-lint-test-coverage.yml
4 changes: 2 additions & 2 deletions .github/workflows/conda-build-lint-test.yml
Original file line number Diff line number Diff line change
@@ -17,8 +17,6 @@ jobs:
run:
shell: bash -l {0}

continue-on-error: true

steps:
- name: Checkout git repo
uses: actions/checkout@v3
@@ -46,5 +44,7 @@ jobs:
run: pip install . --no-deps
- name: Lint
run: pre-commit run --all-files
continue-on-error: true
- name: Test
run: pytest . --cov
continue-on-error: true
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-lint-test.yml
Original file line number Diff line number Diff line change
@@ -13,8 +13,6 @@ jobs:
env:
IMAGE_TAG: ${{ github.sha }}

continue-on-error: true

steps:
- name: Checkout git repo
uses: actions/checkout@v3
@@ -26,5 +24,7 @@ jobs:
run: docker build --load -t thor:$IMAGE_TAG .
- name: Lint
run: docker run -i thor:$IMAGE_TAG pre-commit run --all-files
continue-on-error: true
- name: Test
run: docker run -i thor:$IMAGE_TAG pytest . --cov
ontinue-on-error: true
4 changes: 2 additions & 2 deletions .github/workflows/pip-build-lint-test-coverage.yml
Original file line number Diff line number Diff line change
@@ -17,8 +17,6 @@ jobs:
run:
shell: bash -l {0}

continue-on-error: true

steps:
- name: Checkout git repo
uses: actions/checkout@v3
@@ -44,8 +42,10 @@ jobs:
run: pip install .[tests]
- name: Lint
run: pre-commit run --all-files
continue-on-error: true
- name: Test
run: pytest . --cov --cov-report xml
continue-on-error: true
- name: Coverage
uses: coverallsapp/github-action@v2.0.0
with: