Skip to content

Commit

Permalink
Test build in pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wheerd committed Apr 5, 2024
1 parent 99d5092 commit d539ec8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python-test.yml
Expand Up @@ -33,6 +33,8 @@ jobs:
run: make test
- name: Run stubtest
run: make stubtest
- name: Build
run: make build
- name: Upload coverage
run: make coverage
- name: Coveralls Parallel
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -12,3 +12,6 @@ check:

coverage:
py.test --cov=multiset --cov-report lcov --cov-report term-missing tests/

build:
python -m build
5 changes: 5 additions & 0 deletions make.bat
Expand Up @@ -4,6 +4,7 @@ if /I %1 == test goto :test
if /I %1 == stubtest goto :stubtest
if /I %1 == check goto :check
if /I %1 == coverage goto :coverage
if /I %1 == build goto :build

goto :eof

Expand All @@ -27,3 +28,7 @@ goto :eof
:coverage
py.test --cov=multiset --cov-report lcov --cov-report term-missing tests/
goto :eof

:build
python -m build
goto :eof

0 comments on commit d539ec8

Please sign in to comment.