-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG] MNT Re-enable PyPy CI #12039
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MRG] MNT Re-enable PyPy CI #12039
Changes from all commits
5e5dfe3
442a482
9dbdf3c
ca3c1be
c14542c
8e31357
ace507a
2c6816d
80cfe61
b82b416
ba688b7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,16 @@ source pypy-env/bin/activate | |
python --version | ||
which python | ||
|
||
pip install --extra-index https://antocuni.github.io/pypy-wheels/ubuntu numpy==1.14.4 Cython pytest | ||
pip install --extra-index https://antocuni.github.io/pypy-wheels/ubuntu numpy Cython pytest | ||
pip install "scipy>=1.1.0" sphinx numpydoc docutils | ||
|
||
ccache -M 512M | ||
export CCACHE_COMPRESS=1 | ||
export PATH=/usr/lib/ccache:$PATH | ||
export LOKY_MAX_CPU_COUNT="2" | ||
|
||
pip install -e . | ||
pip install -vv -e . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it still useful to keep the verbose mode here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's still useful, because sometimes the install can take more than 10min, in which case CircleCI will kill the job if there is no output to stdout. It happened once in this PR. |
||
|
||
make test | ||
python -m pytest sklearn/ | ||
python -m pytest doc/sphinxext/ | ||
python -m pytest $(find doc -name '*.rst' | sort) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we're going to do it on CRON in master, do that here, and make a separate PR to 0.20.X?