Skip to content

Commit f7d0e13

Browse files
committed
Fix pytest command(s)
1 parent c4dc868 commit f7d0e13

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

script/test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ fi
5353
# Run the test suite
5454
if [ ${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"
5757
fi
5858

5959
# Run the slow tests
6060
if [ ${slow} ]; then
6161
echo "==> Running the slow tests"
62-
py.test -s -m "slow"
62+
pytest -s -m "slow"
6363
fi
6464

6565
# Run the slow tests
6666
if [ ${manual} ]; then
6767
echo "==> Running the manual tests"
68-
py.test -s -m "manual"
68+
pytest -s -m "manual"
6969
fi

tests/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
WEBEX_TEAMS_TEST_STRING_PREFIX = os.getenv(
5151
"WEBEX_TEAMS_TEST_STRING_PREFIX",
52-
default="webexteamssdk py.test",
52+
default="webexteamssdk pytest",
5353
)
5454

5555
WEBEX_TEAMS_TEST_STRING_TEMPLATE = string.Template(

0 commit comments

Comments
 (0)