Skip to content

Commit 97a62a3

Browse files
committed
Fix lint issues
1 parent ad3d813 commit 97a62a3

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
recursive-include src/mock_vws/resources *

ci/custom_linters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

ci/run_script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

pytest.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
[pytest]
2-
env_files =
3-
./vuforia_secrets.env
42
xfail_strict=true
53
log_cli=true

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
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={

src/vws/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
A library for Vuforia Web Services.
3+
"""

0 commit comments

Comments
 (0)