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
22 changes: 22 additions & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
message:
opened:
header: "Hello @{name}, Thank you for submitting the Pull Request!"
footer: "Do see the ReFrame [Coding Style Guide](https://github.com/eth-cscs/reframe/wiki/coding-style-guide)"
updated:
header: "Hello @{name}, Thank you for updating!"
footer: "Do see the ReFrame [Coding Style Guide](https://github.com/eth-cscs/reframe/wiki/coding-style-guide)"
no_errors: "Cheers! There are no PEP8 issues in this Pull Request!"

only_mention_files_with_errors: True

scanner:
diff_only: True

pycodestyle:
max-line-length: 79
ignore:
- E129
- E221
- E226
- E241
- E272
2 changes: 1 addition & 1 deletion reframe/core/schedulers/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class SlurmJob(sched.Job):

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._prefix = '#SBATCH'
self._prefix = '#SBATCH'
self._completion_states = [SLURM_JOB_BOOT_FAIL,
SLURM_JOB_CANCELLED,
SLURM_JOB_COMPLETED,
Expand Down