Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed Jan 28, 2022
1 parent 3b8d3f1 commit 83deaaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: PYTHON_VERSION=${{ matrix.python-version}} make docker-test-coverage
run: PYTHON_VERSION=${{ matrix.python-version}} make docker-unit-coverage
- name: Run Unit Tests
if: matrix.image-tag != '3.10'
run: PYTHON_VERSION=${{ matrix.python-version}} make docker-test
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ docker-run: docker-build

docker-test: docker-build docker-unit

docker-test-coverage: docker-build docker-unit-with-coverage
docker-test-coverage: docker-build docker-unit-coverage

docker-unit:
@docker run --rm -v $$(pwd):/app ${DOCKER_IMAGE}:latest /bin/bash -l -c "make local-unit"

docker-unit-with-coverage:
docker-unit-coverage:
@docker run --rm -v $$(pwd):/app ${DOCKER_IMAGE}:latest /bin/bash -l -c "COVERALLS_REPO_TOKEN=${COVERALLS_REPO_TOKEN} make local-unit coveralls"

coveralls:
Expand Down

0 comments on commit 83deaaa

Please sign in to comment.