2016-02-21 21:11:37 +00:00
|
|
|
.PHONY: build test
|
|
|
|
|
|
|
|
build:
|
|
|
|
@docker-compose build
|
|
|
|
|
2016-12-30 18:52:12 +00:00
|
|
|
clean:
|
|
|
|
docker-compose down --remove-orphans
|
|
|
|
|
2022-07-24 16:59:34 +00:00
|
|
|
test: build test-python3.8 test-python3.9 test-python3.10 clean
|
2020-05-10 21:03:30 +00:00
|
|
|
|
|
|
|
test-python3.8:
|
|
|
|
@docker-compose run --rm testpython3.8
|
2016-12-30 18:52:12 +00:00
|
|
|
|
2022-07-24 16:59:34 +00:00
|
|
|
test-python3.9:
|
|
|
|
@docker-compose run --rm testpython3.9
|
|
|
|
|
|
|
|
test-python3.10:
|
|
|
|
@docker-compose run --rm testpython3.10
|
|
|
|
|
2016-12-30 18:52:12 +00:00
|
|
|
test-python3:
|
|
|
|
@docker-compose run --rm testpython3
|
|
|
|
|
2016-03-14 16:18:36 +00:00
|
|
|
|
|
|
|
publish:
|
|
|
|
@python setup.py register && python setup.py sdist upload
|