Let's see if zip_safe works.

It should. I don't see any obvious reason why it should break something.
This commit is contained in:
enkore 2014-12-02 11:43:06 +01:00
parent a92ff456dc
commit 29a5867d22
2 changed files with 3 additions and 2 deletions

View File

@ -6,8 +6,6 @@ mkdir -p $BUILD
pep8 --ignore E501 i3pystatus tests
PYTHONPATH=. py.test --junitxml ${BUILD}/testlog.xml tests
# Check that the setup.py script works
rm -rf ${BUILD}/test-install ${BUILD}/test-install-bin
mkdir ${BUILD}/test-install ${BUILD}/test-install-bin
@ -15,6 +13,8 @@ PYTHONPATH=${BUILD}/test-install python setup.py --quiet install --install-lib $
test -f ${BUILD}/test-install-bin/i3pystatus
PYTHONPATH=${BUILD}/test-install py.test --junitxml ${BUILD}/testlog.xml tests
# Check that the docs build w/o warnings (-W flag)
sphinx-build -b html -W docs ${BUILD}/docs/

View File

@ -26,4 +26,5 @@ setup(name="i3pystatus",
"i3pystatus = i3pystatus:main"
]
},
zip_safe=True,
)