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 5353# Run the test suite
5454if [ ${default} ] || [ ${tests} ]; then
5555 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"
5757fi
5858
5959# Run the slow tests
6060if [ ${slow} ]; then
6161 echo " ==> Running the slow tests"
62- py.test -s -m " slow"
62+ pytest -s -m " slow"
6363fi
6464
6565# Run the slow tests
6666if [ ${manual} ]; then
6767 echo " ==> Running the manual tests"
68- py.test -s -m " manual"
68+ pytest -s -m " manual"
6969fi
Original file line number Diff line number Diff line change 4949
5050WEBEX_TEAMS_TEST_STRING_PREFIX = os .getenv (
5151 "WEBEX_TEAMS_TEST_STRING_PREFIX" ,
52- default = "webexteamssdk py.test " ,
52+ default = "webexteamssdk pytest " ,
5353)
5454
5555WEBEX_TEAMS_TEST_STRING_TEMPLATE = string .Template (
You can’t perform that action at this time.
0 commit comments