Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install:
- docker build -f Dockerfile-py${TRAVIS_PYTHON_VERSION} -t mottosso/qt.py .

script:
- docker run --rm -v $(pwd):/Qt.py mottosso/qt.py
- docker run --rm -v $(pwd):/Qt.py -e COVERALLS_REPO_TOKEN mottosso/qt.py

deploy:
provider: pypi
Expand Down
7 changes: 6 additions & 1 deletion Dockerfile-py2.7
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ RUN apt-get update && \
RUN cp -avr /usr/lib/python3/dist-packages/pyside2uic /usr/local/lib/python2.7/dist-packages

# Nose is the Python test-runner
RUN pip install nose nosepipe
RUN pip install \
nose \
nosepipe \
coveralls

# Enable additional output from Qt.py
ENV QT_VERBOSE true
Expand Down Expand Up @@ -60,4 +63,6 @@ ENTRYPOINT cp -r /Qt.py /workspace && \
--with-doctest \
--exe \
examples/*/*.py && \
echo "Uploading results to Coveralls.io.." && \
coveralls && \
echo Done
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/mottosso/Qt.py.svg?branch=master)](https://travis-ci.org/mottosso/Qt.py) [![PyPI version](https://badge.fury.io/py/Qt.py.svg)](https://pypi.python.org/pypi/Qt.py)
[![Build Status](https://travis-ci.org/mottosso/Qt.py.svg?branch=master)](https://travis-ci.org/mottosso/Qt.py) [![PyPI version](https://badge.fury.io/py/Qt.py.svg)](https://pypi.python.org/pypi/Qt.py) [![Coverage Status](https://coveralls.io/repos/github/mottosso/Qt.py/badge.svg?branch=master)](https://coveralls.io/github/mottosso/Qt.py?branch=master)

### Qt.py

Expand Down