File tree Expand file tree Collapse file tree 3 files changed +24
-20
lines changed Expand file tree Collapse file tree 3 files changed +24
-20
lines changed Original file line number Diff line number Diff line change
1
+ # dependabot.yaml reference: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2
+ #
3
+ # Notes:
4
+ # - Status and logs from dependabot are provided at
5
+ # https://github.com/jupyterhub/jupyterhub-idle-culler/network/updates.
6
+ #
7
+ version : 2
8
+ updates :
9
+ # Maintain dependencies in our GitHub Workflows
10
+ - package-ecosystem : github-actions
11
+ directory : /
12
+ labels : [ci]
13
+ schedule :
14
+ interval : monthly
15
+ time : " 05:00"
16
+ timezone : Etc/UTC
Original file line number Diff line number Diff line change @@ -42,15 +42,17 @@ jobs:
42
42
sqlalchemy-version : 1.*
43
43
- python-version : " 3.11"
44
44
jupyterhub-version : 3.*
45
+ - python-version : " 3.12"
46
+ jupyterhub-version : 4.*
45
47
46
48
steps :
47
- - uses : actions/checkout@v3
48
- - uses : actions/setup-python@v4
49
+ - uses : actions/checkout@v4
50
+ - uses : actions/setup-python@v5
49
51
with :
50
52
python-version : " ${{ matrix.python-version }}"
51
- - uses : actions/setup-node@v3
53
+ - uses : actions/setup-node@v4
52
54
with :
53
- node-version : " 18 "
55
+ node-version : " lts/* "
54
56
55
57
- name : Install configurable-http-proxy
56
58
run : |
75
77
76
78
- name : Run tests
77
79
run : |
78
- pytest --maxfail=2 --cov=jupyterhub_idle_culler
80
+ pytest --maxfail=2
79
81
80
82
- uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change @@ -69,20 +69,6 @@ remove-duplicate-keys = true
69
69
remove-unused-variables = true
70
70
71
71
72
- # black is used for autoformatting Python code
73
- #
74
- # ref: https://black.readthedocs.io/en/stable/
75
- #
76
- [tool .black ]
77
- target_version = [
78
- " py37" ,
79
- " py38" ,
80
- " py39" ,
81
- " py310" ,
82
- " py311" ,
83
- ]
84
-
85
-
86
72
# isort is used for autoformatting Python code
87
73
#
88
74
# ref: https://pycqa.github.io/isort/
@@ -96,7 +82,7 @@ profile = "black"
96
82
# ref: https://docs.pytest.org/en/stable/
97
83
#
98
84
[tool .pytest .ini_options ]
99
- addopts = " --verbose --color=yes --durations=10"
85
+ addopts = " --verbose --color=yes --durations=10 --cov=jupyterhub_idle_culler "
100
86
asyncio_mode = " auto"
101
87
102
88
You can’t perform that action at this time.
0 commit comments