File tree 4 files changed +34
-4
lines changed
4 files changed +34
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,36 @@ name: tests
2
2
3
3
on : [push, pull_request]
4
4
5
+ env :
6
+ # Environment variables to support color support (jaraco/skeleton#66):
7
+ # Request colored output from CLI tools supporting it. Different tools
8
+ # interpret the value differently. For some, just being set is sufficient.
9
+ # For others, it must be a non-zero integer. For yet others, being set
10
+ # to a non-empty value is sufficient.
11
+ FORCE_COLOR : -106
12
+ # MyPy's color enforcement (must be a non-zero number)
13
+ MYPY_FORCE_COLOR : -42
14
+ # Recognized by the `py` package, dependency of `pytest` (must be "1")
15
+ PY_COLORS : 1
16
+ # Make tox-wrapped tools see color requests
17
+ TOX_TESTENV_PASSENV : >-
18
+ FORCE_COLOR
19
+ MYPY_FORCE_COLOR
20
+ NO_COLOR
21
+ PY_COLORS
22
+ PYTEST_THEME
23
+ PYTEST_THEME_MODE
24
+
25
+ # Suppress noisy pip warnings
26
+ PIP_DISABLE_PIP_VERSION_CHECK : ' true'
27
+ PIP_NO_PYTHON_VERSION_WARNING : ' true'
28
+ PIP_NO_WARN_SCRIPT_LOCATION : ' true'
29
+
30
+ # Disable the spinner, noise in GHA; TODO(webknjaz): Fix this upstream
31
+ # Must be "1".
32
+ TOX_PARALLEL_NO_SPINNER : 1
33
+
34
+
5
35
jobs :
6
36
test :
7
37
strategy :
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
.. image :: https://img.shields.io/pypi/v/importlib_metadata.svg
2
- :target: `PyPI link`_
2
+ :target: https://pypi.org/project/importlib_metadata
3
3
4
4
.. image :: https://img.shields.io/pypi/pyversions/importlib_metadata.svg
5
- :target: `PyPI link`_
6
-
7
- .. _PyPI link : https://pypi.org/project/importlib_metadata
8
5
9
6
.. image :: https://github.com/python/importlib_metadata/workflows/tests/badge.svg
10
7
:target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22
Original file line number Diff line number Diff line change 1
1
[mypy]
2
2
ignore_missing_imports = True
3
+ # required to support namespace packages
4
+ # https://github.com/python/mypy/issues/14057
5
+ explicit_package_bases = True
You can’t perform that action at this time.
0 commit comments