We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b59dc58 commit 17ed751Copy full SHA for 17ed751
1 file changed
tox.ini
@@ -26,3 +26,14 @@ testpaths=docs src/sortedcontainers tests
26
[testenv:pylint]
27
deps=pylint<2.6
28
commands=pylint src/sortedcontainers
29
+
30
+[testenv:build-check]
31
+description=Builds source and binary packages and uses twine check to validate
32
+skip_install=True
33
+changedir={envtmpdir}
34
+deps=
35
+ pep517
36
+ twine
37
+commands=
38
+ python -m pep517.build -b -s {toxinidir} -o {envtmpdir}/dist
39
+ twine check {envtmpdir}/dist/*
0 commit comments