File tree 4 files changed +33
-4
lines changed
4 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 80
80
# cache: pip
81
81
# cache-dependency-path: 'requirements/*.pip'
82
82
83
+ - name : " Show environment"
84
+ run : |
85
+ set -xe
86
+ python -VV
87
+ python -m site
88
+ env
89
+
83
90
- name : " Install dependencies"
84
91
run : |
85
92
echo matrix id: $MATRIX_ID
@@ -132,11 +139,16 @@ jobs:
132
139
# cache: pip
133
140
# cache-dependency-path: 'requirements/*.pip'
134
141
135
- - name : " Install dependencies "
142
+ - name : " Show environment "
136
143
run : |
137
144
set -xe
138
145
python -VV
139
146
python -m site
147
+ env
148
+
149
+ - name : " Install dependencies"
150
+ run : |
151
+ set -xe
140
152
python -m pip install -e .
141
153
python igor.py zip_mods
142
154
@@ -171,10 +183,16 @@ jobs:
171
183
runs-on : ubuntu-latest
172
184
173
185
steps :
186
+ - name : " Show environment"
187
+ run : |
188
+ set -xe
189
+ env
190
+
174
191
- name : " Compute info for later steps"
175
192
id : info
176
193
run : |
177
194
set -xe
195
+ env
178
196
export SHA10=$(echo ${{ github.sha }} | cut -c 1-10)
179
197
export SLUG=$(date +'%Y%m%d')_$SHA10
180
198
export REPORT_DIR=reports/$SLUG/htmlcov
Original file line number Diff line number Diff line change 79
79
python -m site
80
80
python -m coverage debug sys
81
81
python -m coverage debug pybehave
82
+ env
82
83
83
84
- name : " Install dependencies"
84
85
run : |
Original file line number Diff line number Diff line change @@ -92,11 +92,16 @@ jobs:
92
92
cache : pip
93
93
cache-dependency-path : ' requirements/*.pip'
94
94
95
- - name : " Install dependencies "
95
+ - name : " Show environment "
96
96
run : |
97
97
set -xe
98
98
python -VV
99
99
python -m site
100
+ env
101
+
102
+ - name : " Install dependencies"
103
+ run : |
104
+ set -xe
100
105
python -m pip install -r requirements/tox.pip
101
106
102
107
- name : " Tox doc"
Original file line number Diff line number Diff line change @@ -79,14 +79,19 @@ jobs:
79
79
# cache: pip
80
80
# cache-dependency-path: 'requirements/*.pip'
81
81
82
- - name : " Install dependencies "
82
+ - name : " Show environment "
83
83
run : |
84
84
set -xe
85
85
python -VV
86
86
python -m site
87
- python -m pip install -r requirements/tox.pip
88
87
# For extreme debugging:
89
88
# python -c "import urllib.request as r; exec(r.urlopen('https://bit.ly/pydoctor').read())"
89
+ env
90
+
91
+ - name : " Install dependencies"
92
+ run : |
93
+ set -xe
94
+ python -m pip install -r requirements/tox.pip
90
95
91
96
- name : " Run tox for ${{ matrix.python-version }}"
92
97
run : |
You can’t perform that action at this time.
0 commit comments