mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2025-12-26 17:02:28 +01:00
16 lines
308 B
Bash
Executable File
16 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf doc/build
|
|
rm dist/*
|
|
python3 setup.py clean
|
|
python3 setup.py build
|
|
python3 setup.py bdist_wheel
|
|
pip3 uninstall -y pytiled_parser
|
|
for file in dist/*
|
|
do
|
|
pip3 install $file
|
|
done
|
|
# sphinx-build -b html doc doc/build/html
|
|
coverage run --source pytiled_parser setup.py test
|
|
coverage report -m
|