summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in6
-rw-r--r--tests/test_completion.py5
2 files changed, 6 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 373701c7..42aac57f 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,9 @@
include LICENSE
include README.md
include CHANGELOG.md
+include CODEOWNERS
+include CONTRIBUTING.md
+include tox.ini
+recursive-include docs *
+recursive-include examples *
+recursive-include tests *
diff --git a/tests/test_completion.py b/tests/test_completion.py
index 70f77d0a..0ae4215f 100644
--- a/tests/test_completion.py
+++ b/tests/test_completion.py
@@ -375,11 +375,6 @@ def test_path_completion_user_expansion(cmd2_app):
# Verify that the results are the same in both cases
assert completions_tilde == completions_home
- # This next assert fails on AppVeyor Windows containers, but works fine on my Windows 10 VM
- if not sys.platform.startswith('win'):
- # Verify that there is something there
- assert completions_tilde
-
def test_path_completion_directories_only(cmd2_app, request):
test_dir = os.path.dirname(request.module.__file__)