We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b0f106 commit 1eadb94Copy full SHA for 1eadb94
.travis/build.sh
@@ -30,21 +30,17 @@ fi
30
python setup.py build_ext --inplace $EXTRA_BUILDEXT
31
BUILD_RES=$?
32
33
-if [ x"$KRB5_VER" = "xheimdal" ]; then
34
- # heimdal can't run the tests yet, so just exit
35
- exit $BUILD_RES
36
-fi
37
-
38
-if [ "$TRAVIS_OS_NAME" == "windows" ]; then
39
- # Windows can't run tests yet, so just exit
40
41
42
43
if [ $BUILD_RES -ne 0 ]; then
44
# if the build failed, don't run the tests
45
exit $BUILD_RES
46
fi
47
+if [ x"$KRB5_VER" = "xheimdal" ] || [ "$TRAVIS_OS_NAME" = "windows" ]; then
+ # heimdal/Windows can't run the tests yet, so just make sure it imports and exit
+ python -c "import gssapi"
+ exit $?
+fi
+
48
python setup.py nosetests --verbosity=3
49
TEST_RES=$?
50
0 commit comments