Skip to content

Commit 9dd7a8f

Browse files
committed
chore: housekeeping
1 parent f2aaa42 commit 9dd7a8f

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,4 +442,4 @@ Python libraries as specified in `<requirements.txt>`_.
442442

443443
Building and running tests additionally requires packages listed in `<requirements_test.txt>`_.
444444

445-
Tested on Linux, OS X and Windows.
445+
Tested on Linux, macOS and Windows.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Package(boilerplates.setup.Package):
1717
'Intended Audience :: Developers',
1818
'License :: OSI Approved :: Apache Software License',
1919
'Natural Language :: English',
20-
'Operating System :: MacOS :: MacOS X',
20+
'Operating System :: MacOS',
2121
'Operating System :: Microsoft :: Windows',
2222
'Operating System :: POSIX :: Linux',
2323
'Programming Language :: Python :: 3.8',

test/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@
1515
getattr(logging, os.environ.get('LOGGING_LEVEL', 'debug').upper()))
1616
logging.getLogger('test').setLevel(logging.DEBUG)
1717

18-
if 'EXAMPLE_PROJECTS_PATH' not in os.environ:
19-
os.environ['EXAMPLE_PROJECTS_PATH'] = '..'

test/examples.py

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

1212
_HERE = pathlib.Path(__file__).resolve().parent
1313

14-
_GIT_REPOS_ROOT = pathlib.Path(os.environ['EXAMPLE_PROJECTS_PATH']).absolute()
14+
_GIT_REPOS_ROOT = pathlib.Path(os.environ.get('EXAMPLE_PROJECTS_PATH', '..')).resolve()
1515

1616
GIT_REPO_EXAMPLES = list(_ for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
1717

0 commit comments

Comments
 (0)