Skip to content

Commit 10e0d55

Browse files
committed
Add black and flake8 dev deps and harden jira workflow
1 parent 329e761 commit 10e0d55

3 files changed

Lines changed: 121 additions & 5 deletions

File tree

.github/workflows/jira_codex_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ jobs:
7676
- name: Verify tooling exists
7777
run: |
7878
set -euo pipefail
79-
uv run black --version
80-
uv run flake8 --version
81-
uv run pytest --version
79+
uv run --with black black --version
80+
uv run --with flake8 flake8 --version
81+
uv run --with pytest pytest --version
8282
8383
- name: Read Jira key
8484
id: jira

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,14 @@ prepend_sys_path = ["."]
132132

133133
[dependency-groups]
134134
dev = [
135+
"black>=25.9.0",
135136
"behave>=1.3.3",
137+
"flake8>=7.3.0",
138+
"faker>=25.0.0",
139+
"pyhamcrest>=2.0.3",
136140
"pytest>=8.4.0",
137141
"python-dotenv>=1.1.1",
138142
"requests>=2.32.5",
139-
"pyhamcrest>=2.0.3",
140-
"faker>=25.0.0",
141143
]
142144

143145
[tool.pytest.ini_options]

uv.lock

Lines changed: 114 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)