We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e31788 commit 0c2049fCopy full SHA for 0c2049f
.github/workflows/release-trigger.yml
@@ -7,7 +7,7 @@ on:
7
description: "Workflow test user input"
8
type: string
9
required: true
10
- default: "test input value"
+ default: "test input default value"
11
12
env:
13
PYTHON_VERSION: "3.13"
noxfile.py
@@ -11,6 +11,8 @@
@nox.session(python=_ALL_PYTHON)
def pytest(session):
14
+ # Force a test for pipeline testing
15
+ assert False
16
session.install("-e", ".[test]")
17
18
options = session.posargs
0 commit comments