Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AsyncScheduler: Ability to schedule сoroutines #357

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
101be98
Added asynchronous scheduler and simple test to it
pirroman Mar 12, 2020
436a948
more async tests
pirroman Mar 15, 2020
ec85135
has supported tests for python2.7
pirroman Mar 15, 2020
31ec27f
AsyncScheduler: Inherited docs
pirroman Mar 19, 2020
28b34e2
AsyncScheduler: flake8 errors were fixed
pirroman Mar 19, 2020
48bc866
AsyncScheduler: docs were fixed
pirroman Mar 19, 2020
a120fc8
AsyncScheduler: ignore async by python2.7
pirroman Mar 19, 2020
b77e2eb
AsyncScheduler: AsyncMock is supported since version 3.6
pirroman Mar 19, 2020
9039b7a
AsyncScheduler: mistake in inheritance of run doc
pirroman Mar 20, 2020
8bcca32
AsyncScheduler: redundant AsyncJob
pirroman Mar 20, 2020
02ff1b0
Merge branch 'master' of https://github.com/dbader/schedule
pirroman Jan 4, 2021
72d8357
Merge branch 'master' into async_scheduler
pirroman Jan 4, 2021
b407484
Added verification python3.9
pirroman Jan 4, 2021
962f17a
fixed test_weekday_at_todady
pirroman Jan 4, 2021
fc31314
Do not check asynchronous functions for Python 2.7 and 3.5
pirroman Jan 4, 2021
29fb0df
erase extra spaces
pirroman Jan 4, 2021
a18c701
Oops: Do not check asynchronous functions for Python 2.7 or 3.5
pirroman Jan 4, 2021
cd0cbfb
added strategy for coveralls
pirroman Jan 4, 2021
e6807cd
using custom coveralls for 2.7 and 3.5
pirroman Jan 4, 2021
eaed4f3
Coveralls for others
pirroman Jan 4, 2021
4220e3e
misstype with condition
pirroman Jan 4, 2021
520f959
Merge branch 'master' of https://github.com/dbader/schedule
pirroman Jan 5, 2021
8e1c263
fixed unexpected indentation
pirroman Jan 5, 2021
02e9e50
Merge branch 'master' of https://github.com/dbader/schedule
pirroman Sep 19, 2021
9b43f6a
download ci.yml
pirroman Sep 19, 2021
af177c7
erase __all__
pirroman Sep 19, 2021
61591c9
come back repeat
pirroman Sep 19, 2021
c1fa96d
come back Job.until
pirroman Sep 19, 2021
1d7754e
fixed repeat decorator
pirroman Sep 19, 2021
8f38d57
ABC class BaseScheduler
pirroman Sep 22, 2021
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
3 changes: 3 additions & 0 deletions .coveragerc2.7and3.5
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[report]
omit =
schedule/async_*
6 changes: 6 additions & 0 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# content of conftest.py
import sys

collect_ignore = []
if sys.version_info < (3, 5, 0):
collect_ignore.append("test_async_scheduler.py")
5 changes: 3 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
aiounittest
docutils
mock
Pygments
pytest
pytest-cov
pytest-flake8
Sphinx
black==20.8b1
mypy
black==21.9b0
mypy
Loading