-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nox tasks to output python and exasol versions for builds
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import json | ||
|
||
import nox | ||
from nox import Session | ||
|
||
|
||
def _python_matrix(): | ||
return {"python-version": ["3.9", "3.10", "3.11", "3.12"]} | ||
|
||
|
||
def _exasol_matrix(): | ||
return {"exasol-version": ["7.1.9"]} | ||
|
||
|
||
@nox.session(name="matrix:python", python=False) | ||
def python_matrix(session: Session) -> None: | ||
"""Output the build matrix for Python versions as JSON.""" | ||
print(json.dumps(_python_matrix())) | ||
|
||
|
||
@nox.session(name="matrix:exasol", python=False) | ||
def exasol_matrix(session: Session) -> None: | ||
"""Output the build matrix for Exasol versions as JSON.""" | ||
print(json.dumps(_exasol_matrix())) | ||
|
||
|
||
@nox.session(name="matrix:all", python=False) | ||
def full_matrix(session: Session) -> None: | ||
"""Output the full build matrix for Python & Exasol versions as JSON.""" | ||
matrix = _python_matrix() | ||
matrix.update(_exasol_matrix()) | ||
print(json.dumps(matrix)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters