Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4897ddf
refactor: first step to outsource query command
cmeesters Aug 12, 2025
44c42d7
refactor: working on the interface - attempt to make an option optional
cmeesters Aug 13, 2025
82cae3f
feat: adjusting dynamiccally adjust for query wait times instead of a…
cmeesters Aug 18, 2025
c484c90
feat: new switch between sacct and squeue as status commands
cmeesters Sep 19, 2025
7220326
fix: formatting
cmeesters Sep 19, 2025
7f7c5fb
feat: changed toml file to respect the 80 char limit
cmeesters Sep 19, 2025
383de18
fix: formatting
cmeesters Sep 19, 2025
b39af85
fix: the line lenght limit is 88
cmeesters Sep 19, 2025
8d9624a
fix: formatting
cmeesters Sep 19, 2025
1e2bb00
fix: formatting
cmeesters Sep 19, 2025
2702510
fix: superflous import
cmeesters Sep 19, 2025
419180a
fix: formatting
cmeesters Sep 19, 2025
bc851dd
Update snakemake_executor_plugin_slurm/job_status_query.py
cmeesters Sep 19, 2025
5a6cacb
Merge branch 'main' into feat/test_job_query
cmeesters Nov 21, 2025
5c3450b
fix: formatting2
cmeesters Nov 21, 2025
e8e360a
fix: corrected messages and logic behind them
cmeesters Nov 21, 2025
1dae920
fix: formatting
cmeesters Nov 21, 2025
3b19f8c
feat: finally enable command switch
cmeesters Nov 21, 2025
afb3026
fix: removed unused import
cmeesters Nov 21, 2025
d189548
fix: unicode to ascii x
cmeesters Nov 21, 2025
84abbc3
fix: clearer warning message for low MinAge settings
cmeesters Nov 21, 2025
0957dfb
fix: adjusted wording
cmeesters Nov 24, 2025
ca69118
Merge branch 'main' into feat/test_job_query
cmeesters Nov 27, 2025
9018ea8
fix: better message for low values of MinJobAge
cmeesters Nov 27, 2025
3f7970b
Fix typo in comment about command generation
cmeesters Nov 27, 2025
afc48dc
feat: added validators for cli settigns
cmeesters Nov 27, 2025
b650eaa
feat: new improved cli validation
cmeesters Nov 27, 2025
a40a3c0
fix: formatting
cmeesters Nov 27, 2025
41a52fd
fix: init_seconds_before_status_checks must be a positive integer - a…
cmeesters Nov 27, 2025
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
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ pandas = "^2.2.3"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "Snakefile"]

[tool.black]
line-length = 87
target-version = ['py311']

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Loading