summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-30 17:40:50 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-30 17:40:50 -0500
commit9da7398193702615344a113d93dda1314db53eb1 (patch)
treec710f1b119ba53dd6529152cc6786e8e4cece1d9 /tests
parent8bf9eed9787bad644727e08d72824aa345d947bc (diff)
downloadcmd2-git-9da7398193702615344a113d93dda1314db53eb1.tar.gz
Remove all use of AppVeyor for Windows testing because it is slower than GitHub Actions for the same purpose
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_completion.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_completion.py b/tests/test_completion.py
index 0d8f6eb1..d56c035f 100755
--- a/tests/test_completion.py
+++ b/tests/test_completion.py
@@ -491,8 +491,6 @@ def test_path_completion_doesnt_match_wildcards(cmd2_app, request):
# Currently path completion doesn't accept wildcards, so will always return empty results
assert cmd2_app.path_complete(text, line, begidx, endidx) == []
-@pytest.mark.skipif(sys.platform == 'win32', reason="getpass.getuser() does not work on Windows in AppVeyor because "
- "no user name environment variables are set")
def test_path_completion_complete_user(cmd2_app):
import getpass
user = getpass.getuser()