Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ htmlcov/
test.py
*.egg-info
docs/_build/
.mypy_cache/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lint:
python setup.py check -rms
flake8 arq/ tests/
pytest arq -p no:sugar -q --cache-clear
mypy --fast-parser --ignore-missing-imports --follow-imports=skip arq/
mypy --ignore-missing-imports --follow-imports=skip arq/

.PHONY: test
test:
Expand Down
3 changes: 2 additions & 1 deletion arq/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
from datetime import datetime
from importlib import import_module, reload
from multiprocessing import Process
from signal import Signals # type: ignore
from signal import Signals
from typing import Dict, Set # noqa

from .jobs import Job
from .logs import default_log_config
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
coverage==4.3.4
docutils==0.13.1
flake8==3.3.0
mypy==0.471
mypy==0.510
pycodestyle==2.3.1
pyflakes==1.5.0
pytest==3.0.7
Expand Down