Introduce Github Actions to replace TravisCI (#3610)
This commit is contained in:
parent
5a41866f71
commit
8591eda9d6
9 changed files with 368 additions and 244 deletions
7
Makefile
7
Makefile
|
|
@ -26,7 +26,12 @@ format:
|
|||
test-only:
|
||||
rm -f .coverage
|
||||
rm -rf cover
|
||||
@pytest -sv --cov=moto --cov-report html ./tests/ $(TEST_EXCLUDE)
|
||||
pytest -sv ./tests/ $(TEST_EXCLUDE)
|
||||
|
||||
test-coverage:
|
||||
rm -f .coverage
|
||||
rm -rf cover
|
||||
pytest -sv --cov=moto --cov-report xml ./tests/ $(TEST_EXCLUDE)
|
||||
|
||||
test: lint test-only
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue