Skip to content

Commit db21d05

Browse files
committed
CI
1 parent 1e9f970 commit db21d05

File tree

5 files changed

+79
-3
lines changed

5 files changed

+79
-3
lines changed

.github/workflows/pre-commit.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: pre-commit
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
pre-commit:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v3
14+
- uses: pre-commit/[email protected]

.github/workflows/test.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Run Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
python-version:
12+
- "3.10"
13+
- "3.11"
14+
- "3.12"
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v3
19+
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install -r requirements.txt
29+
30+
- name: Run tests
31+
run: make test

.pre-commit-config.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
repos:
2+
- repo: https://github.com/asottile/pyupgrade
3+
rev: v3.19.0
4+
hooks:
5+
- id: pyupgrade
6+
args: [--py310-plus]
7+
- repo: https://github.com/pre-commit/pre-commit-hooks
8+
rev: v5.0.0
9+
hooks:
10+
# Prevent commits to main
11+
# - id: no-commit-to-branch
12+
# args: [--branch, dev, --branch, main]
13+
# Make sure links to Github are permalinks and not just the latest.
14+
- id: check-vcs-permalinks
15+
- repo: https://github.com/astral-sh/ruff-pre-commit
16+
# Ruff version.
17+
rev: v0.8.2
18+
hooks:
19+
# Run the linter.
20+
- id: ruff
21+
args: [ --fix ]
22+
# Run the formatter.
23+
- id: ruff-format

dramatiq_workflow/tests/test_workflow.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ def __generate_id(self):
2222
self.message_ids.append(current_id)
2323
return current_id
2424

25-
def __make_message(
26-
self, message_id, *args, message_options={}, message_timestamp=None, **kwargs
27-
):
25+
def __make_message(self, message_id, *args, message_options={}, message_timestamp=None, **kwargs):
2826
return dramatiq.Message(
2927
message_id=message_id,
3028
message_timestamp=message_timestamp or self.message_timestamp,

pyproject.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[tool.ruff]
2+
line-length = 120
3+
target-version = 'py310'
4+
exclude = [".git", "__pypackages__", "venv"]
5+
6+
[tool.ruff.lint]
7+
fixable = ["ALL"]
8+
9+
[tool.pytest.ini_options]
10+
norecursedirs = '.git'

0 commit comments

Comments
 (0)