https://github.com/oar-team/oar3
Raw File
Tip revision: 7241b2097bdebb5d6c7d4966ba2d6cd40d00b227 authored by Olivier Richard on 02 April 2024, 12:59:32 UTC
[scheduler] fix: a dependency with job in Error is ignored (same behavior that OAR2)
Tip revision: 7241b20
.flake8
[flake8]
max-line-length = 88
show-source = True
ignore = E203, E231, E501, W503, W605
exclude=
  # Don't check .git
  .git,
  # This is related to dev environment
  .venv,
  docs,
  *egg,
  # The sources in this folder are evaluated at runtime
  etc/oar/admission_rules.d
  # TODO: finish cleaning of oarsub and bipbip
  oar/modules/bipbip.py
  oar/cli/oarsub.py
back to top