Add test for CIBW_TEST_COMMAND running in a shell on mac and linux

This commit is contained in:
Joe Rickerby
2018-07-05 09:28:44 +01:00
parent 4a0d05df49
commit b18281867b
+3 -1
View File
@@ -1,4 +1,6 @@
{
"CIBW_TEST_REQUIRES": "nose",
"CIBW_TEST_COMMAND": "nosetests {project}/test"
"CIBW_TEST_COMMAND": "false || nosetests {project}/test",
"comment": "The 'false ||' bit is to ensure this command runs in a shell on Mac and Linux",
"CIBW_TEST_COMMAND_WINDOWS": "nosetests {project}/test"
}