Skip to content
This repository was archived by the owner on May 18, 2023. It is now read-only.

Commit dfd394e

Browse files
committed
Print pip list during build and test phases
1 parent 967ec14 commit dfd394e

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

.appveyor.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ environment:
1515
DAILY_COMMIT: master
1616

1717
matrix:
18-
- PYTHON: C:\Python36
1918
- PYTHON: C:\Python36-x64
20-
- PYTHON: C:\Python37
21-
- PYTHON: C:\Python37-x64
2219

2320
init:
2421
- "ECHO \"%APPVEYOR_SCHEDULED_BUILD%\""
@@ -54,7 +51,8 @@ install:
5451
# Install the build dependencies of the project.
5552
- pip install %NP_TEST_DEP%
5653
- pip install -r requirements\build.txt
57-
- python setup.py bdist_wheel
54+
- pip list
55+
- python setup.py bdist_wheel -vv
5856
- ps: |
5957
# Upload artifact to Appveyor immediately after build
6058
ls dist -r | Foreach-Object {
@@ -80,6 +78,7 @@ test_script:
8078
# Check Python version just in case
8179
- python --version
8280
# Run unit tests with pytest
81+
- pip list
8382
- pytest --pyargs skimage
8483
- cd ..
8584

.travis.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,10 @@ matrix:
4040
env:
4141
- MB_PYTHON_VERSION=3.6
4242
- PLAT=i686
43-
- os: linux
44-
env:
45-
- MB_PYTHON_VERSION=3.7
46-
- os: linux
47-
env:
48-
- MB_PYTHON_VERSION=3.7
49-
- PLAT=i686
5043
- os: osx
5144
language: generic
5245
env:
5346
- MB_PYTHON_VERSION=3.6
54-
- os: osx
55-
language: generic
56-
env:
57-
- MB_PYTHON_VERSION=3.7
5847

5948
before_install:
6049
- if [ "$TRAVIS_BRANCH" == "master" ]; then

config.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,20 @@ function pre_build {
1515

1616
function pip_opts {
1717
# Define extra pip arguments
18-
echo "--prefer-binary --find-links $EXTRA_WHEELS_URL"
18+
echo "--prefer-binary --find-links $EXTRA_WHEELS_URL"
1919
}
2020

2121
function build_wheel {
2222
# Horrible set of build requirements installs too-recent numpy when using
2323
# default pip wheel command
24+
pip list
2425
build_bdist_wheel $@
2526
}
2627

2728
function run_tests {
2829
# Runs tests on installed distribution from an empty directory
2930
python --version
3031
echo "backend : agg" > matplotlibrc
32+
pip list
3133
pytest --pyargs skimage
3234
}

0 commit comments

Comments
 (0)