forked from mottosso/Qt.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
61 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM ubuntu:16.04 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
software-properties-common && \ | ||
add-apt-repository -y ppa:thopiekar/pyside-git && \ | ||
apt-get update && apt-get install -y \ | ||
python \ | ||
python-dev \ | ||
python-pip \ | ||
python-qt4 \ | ||
python-pyqt5 \ | ||
python-pyside \ | ||
python-pyside2 | ||
|
||
# Nose is the Python test-runner | ||
RUN pip install nose nosepipe | ||
|
||
# Enable additional output from Qt.py | ||
ENV QT_VERBOSE true | ||
|
||
WORKDIR /workspace/Qt.py | ||
ENTRYPOINT cp -r /Qt.py /workspace && \ | ||
python build_caveats_tests.py && \ | ||
nosetests \ | ||
--verbose \ | ||
--with-process-isolation \ | ||
--with-doctest \ | ||
--exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM ubuntu:16.04 | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
software-properties-common && \ | ||
add-apt-repository -y ppa:thopiekar/pyside-git && \ | ||
apt-get update && apt-get install -y \ | ||
python3 \ | ||
python3-dev \ | ||
python3-pip \ | ||
python3-pyqt4 \ | ||
python3-pyqt5 \ | ||
python3-pyside \ | ||
python3-pyside2 | ||
|
||
# Nose is the Python test-runner | ||
RUN pip3 install nose nosepipe | ||
|
||
# Enable additional output from Qt.py | ||
ENV QT_VERBOSE true | ||
|
||
WORKDIR /workspace/Qt.py | ||
ENTRYPOINT cp -r /Qt.py /workspace && \ | ||
python3 build_caveats_tests.py && \ | ||
nosetests3 \ | ||
--verbose \ | ||
--with-process-isolation \ | ||
--with-doctest \ | ||
--exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.