File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- recursive-include src/mock_vws/resources *
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def test_ci_patterns_valid() -> None:
5454 ci_patterns = _travis_ci_patterns ()
5555
5656 for ci_pattern in ci_patterns :
57- pattern = 'tests/mock_vws /' + ci_pattern
57+ pattern = 'tests/vws /' + ci_pattern
5858 collect_only_result = pytest .main (['--collect-only' , pattern ])
5959
6060 message = '"{ci_pattern}" does not match any tests.' .format (
@@ -72,7 +72,7 @@ def test_tests_collected_once() -> None:
7272 ci_patterns = _travis_ci_patterns ()
7373 tests_to_patterns : Dict [str , Set [str ]] = {}
7474 for pattern in ci_patterns :
75- pattern = 'tests/mock_vws /' + pattern
75+ pattern = 'tests/vws /' + pattern
7676 tests = _tests_from_pattern (ci_pattern = pattern )
7777 for test in tests :
7878 if test in tests_to_patterns :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def run_test(ci_pattern: str) -> None:
1414 """
1515 Run pytest with a given filename.
1616 """
17- path = Path ('tests' ) / 'mock_vws ' / ci_pattern
17+ path = Path ('tests' ) / 'vws ' / ci_pattern
1818 result = pytest .main (
1919 [
2020 '-vvv' ,
Original file line number Diff line number Diff line change 11[pytest]
2- env_files =
3- ./vuforia_secrets.env
42xfail_strict =true
53log_cli =true
Original file line number Diff line number Diff line change 2626 packages = find_packages (where = 'src' ),
2727 zip_safe = False ,
2828 url = 'http://vws-python.readthedocs.io' ,
29- keywords = 'vuforia mock fake client' ,
29+ keywords = 'vuforia fake client' ,
3030 package_dir = {'' : 'src' },
3131 install_requires = INSTALL_REQUIRES ,
3232 extras_require = {
Original file line number Diff line number Diff line change 1+ """
2+ A library for Vuforia Web Services.
3+ """
You can’t perform that action at this time.
0 commit comments