We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c1aa6 commit 681f14cCopy full SHA for 681f14c
Makefile
@@ -1,5 +1,5 @@
1
-test:
2
- pytest tests
+build:
+ python setup.py sdist bdist_wheel
3
4
clean:
5
rm -fr dist build pytest_echo.egg-info .coverage ./~build
@@ -8,5 +8,6 @@ fullclean: clean
8
rm -fr .tox .cache .pytest_cache
9
find . -name '*.pyc' -exec rm -f {} +
10
11
-release:
12
- python setup.py sdist bdist_wheel
+release: build
+ twine upload dist/*
13
+ $(MAKE) fullclean
tox.ini
@@ -15,7 +15,7 @@ deps =
15
16
commands =
17
pip install -e .
18
- coverage run -m py.test test_echo.py pytest_echo.py
+ coverage run -m py.test -vv test_echo.py pytest_echo.py
19
coverage report
20
coverage html
21
0 commit comments