File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 53
53
# Run the test suite
54
54
if [ ${default} ] || [ ${tests} ]; then
55
55
echo " ==> Running the test suite (excluding slow and manual tests)"
56
- py.test -s -m " not slow not manual"
56
+ pytest -s -m " not slow and not manual"
57
57
fi
58
58
59
59
# Run the slow tests
60
60
if [ ${slow} ]; then
61
61
echo " ==> Running the slow tests"
62
- py.test -s -m " slow"
62
+ pytest -s -m " slow"
63
63
fi
64
64
65
65
# Run the slow tests
66
66
if [ ${manual} ]; then
67
67
echo " ==> Running the manual tests"
68
- py.test -s -m " manual"
68
+ pytest -s -m " manual"
69
69
fi
Original file line number Diff line number Diff line change 49
49
50
50
WEBEX_TEAMS_TEST_STRING_PREFIX = os .getenv (
51
51
"WEBEX_TEAMS_TEST_STRING_PREFIX" ,
52
- default = "webexteamssdk py.test " ,
52
+ default = "webexteamssdk pytest " ,
53
53
)
54
54
55
55
WEBEX_TEAMS_TEST_STRING_TEMPLATE = string .Template (
You can’t perform that action at this time.
0 commit comments