mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-11 07:41:02 +00:00
Simplify CI install/testing
This commit is contained in:
parent
f2f714ad23
commit
6196defa8b
@ -31,6 +31,8 @@ matrix:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
- make ci-info
|
- make ci-info
|
||||||
|
- make ci-install
|
||||||
|
- make test
|
||||||
- make ci-bundle
|
- make ci-bundle
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
5
Makefile
5
Makefile
@ -48,10 +48,11 @@ ci-info: ## Print info about environment
|
|||||||
python3 --version
|
python3 --version
|
||||||
pip3 --version
|
pip3 --version
|
||||||
|
|
||||||
ci-bundle: ## Create bundle and run basic tests
|
ci-install: ## Install requirements
|
||||||
pip3 install -U setuptools
|
pip3 install -U setuptools
|
||||||
pip3 install -r requirements/dev.txt
|
pip3 install -r requirements/dev.txt
|
||||||
$(MAKE) test
|
|
||||||
|
ci-bundle: ## Create bundle and run basic tests
|
||||||
$(MAKE) bundle
|
$(MAKE) bundle
|
||||||
mkdir -p releases/
|
mkdir -p releases/
|
||||||
./dist/tutor --version
|
./dist/tutor --version
|
||||||
|
Loading…
Reference in New Issue
Block a user