Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
fdac5fbf
Unverified
Commit
fdac5fbf
authored
Aug 23, 2021
by
Henry Schreiner
Committed by
GitHub
Aug 23, 2021
Browse files
chore: support targeting different Python versions with nox (#3214)
parent
b3d18f38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
.github/CONTRIBUTING.md
.github/CONTRIBUTING.md
+2
-2
noxfile.py
noxfile.py
+3
-1
No files found.
.github/CONTRIBUTING.md
View file @
fdac5fbf
...
...
@@ -68,8 +68,8 @@ nox -l
# Run linters
nox
-s
lint
# Run tests
nox
-s
tests
# Run tests
on Python 3.9
nox
-s
tests
-3.9
# Build and preview docs
nox
-s
docs
--
serve
...
...
noxfile.py
View file @
fdac5fbf
...
...
@@ -2,6 +2,8 @@ import nox
nox
.
options
.
sessions
=
[
"lint"
,
"tests"
,
"tests_packaging"
]
PYTHON_VERISONS
=
[
"2.7"
,
"3.5"
,
"3.6"
,
"3.7"
,
"3.8"
,
"3.9"
,
"3.10"
]
@
nox
.
session
(
reuse_venv
=
True
)
def
lint
(
session
:
nox
.
Session
)
->
None
:
...
...
@@ -12,7 +14,7 @@ def lint(session: nox.Session) -> None:
session
.
run
(
"pre-commit"
,
"run"
,
"-a"
)
@
nox
.
session
@
nox
.
session
(
python
=
PYTHON_VERISONS
)
def
tests
(
session
:
nox
.
Session
)
->
None
:
"""
Run the tests (requires a compiler).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment