-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
0b93926
commit 4715553
Showing
7 changed files
with
73 additions
and
17 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
omit= | ||
setup.py | ||
docs/* | ||
tests/* | ||
plugins = Cython.Coverage |
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 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM pypy:3.5 | ||
FROM python:3.5 | ||
RUN apt-get update && \ | ||
apt-get install -y patchelf | ||
RUN pypy3 -m pip install Cython pytest coverage pytest-cov auditwheel doctor-wheel twine | ||
RUN python -m pip install Cython pytest coverage pytest-cov auditwheel doctor-wheel twine | ||
|
||
ENV DEBUG=1 | ||
|
||
WORKDIR /tmp/compile | ||
ADD . /tmp/compile/ | ||
|
||
RUN pypy3 setup.py install && \ | ||
RUN python setup.py install && \ | ||
chmod ugo+x /tmp/compile/tests/test.sh | ||
|
||
CMD ["/tmp/compile/tests/test.sh"] |
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 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 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 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