How to run test_script only for certain members/jobs of build matrix
I have a build matrix defined like this:
environment:
matrix:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
and later I run a simple test script:
test_script:
- "build.cmd tox"
What I'd like to do is only run the test_script for the 64 bit Python jobs. What's the best way to achieve that?
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
1 Posted by Ilya Finkelshte... on 06 Dec, 2017 09:00 PM
Something like this should work.
2 Posted by jonathan.underw... on 06 Dec, 2017 11:09 PM
Yes, perfect - that works. Thank you very much!
Ilya Finkelshteyn closed this discussion on 25 Aug, 2018 02:25 AM.