File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -699,6 +699,13 @@ tasks:
699
699
TOPOLOGY : " server"
700
700
- func : " run cdecimal tests"
701
701
702
+ - name : " no-server"
703
+ tags : ["no-server"]
704
+ commands :
705
+ - func : " run tests"
706
+ vars :
707
+ PYTHON_BINARY : /opt/python/2.7/bin/python
708
+
702
709
# }}}
703
710
704
711
@@ -1343,6 +1350,14 @@ buildvariants:
1343
1350
tasks :
1344
1351
- name : " cdecimal"
1345
1352
1353
+ - name : " no-server"
1354
+ display_name : " No server test"
1355
+ run_on :
1356
+ - ubuntu1604-test
1357
+ tasks :
1358
+ - name : " no-server"
1359
+
1360
+
1346
1361
# Platform notes
1347
1362
# i386 builds of OpenSSL or Cyrus SASL are not available
1348
1363
# Ubuntu14.04 only supports 2.6+ with SSL
Original file line number Diff line number Diff line change @@ -5,15 +5,13 @@ set -o errexit # Exit the script with error if any of the commands fail
5
5
# Supported/used environment variables:
6
6
# AUTH Set to enable authentication. Defaults to "noauth"
7
7
# SSL Set to enable SSL. Defaults to "nossl"
8
- # MONGODB_URI Set the suggested connection MONGODB_URI (including credentials and topology info)
9
8
# PYTHON_BINARY The Python version to use. Defaults to whatever is available
10
9
# GREEN_FRAMEWORK The green framwork to test with, if any.
11
10
# C_EXTENSIONS Pass --no_ext to setup.py, or not.
12
11
13
12
14
13
AUTH=${AUTH:- noauth}
15
14
SSL=${SSL:- nossl}
16
- MONGODB_URI=${MONGODB_URI:- }
17
15
PYTHON_BINARY=${PYTHON_BINARY:- }
18
16
GREEN_FRAMEWORK=${GREEN_FRAMEWORK:- }
19
17
C_EXTENSIONS=${C_EXTENSIONS:- }
49
47
OUTPUT=" "
50
48
fi
51
49
52
- echo " Running $AUTH tests over $SSL with python $PYTHON , connecting to $MONGODB_URI "
50
+ echo " Running $AUTH tests over $SSL with python $PYTHON "
53
51
$PYTHON -c ' import sys; print(sys.version)'
54
52
55
53
# Run the tests, and store the results in Evergreen compatible XUnit XML
You can’t perform that action at this time.
0 commit comments