Skip to content

Commit

Permalink
make names of tests safer
Browse files Browse the repository at this point in the history
  • Loading branch information
wxtim committed Mar 2, 2023
1 parent 9af770a commit 0d1c169
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/unit/job_runner_handlers/test_pbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'#PBS -e cylc-run/chop/log/job/1/axe/01/job.err',
'#PBS -l walltime=180',
],
id='it sets basic directives'
id='basic'
),
pytest.param(
{
Expand All @@ -62,7 +62,7 @@
'#PBS -e cylc-run/chop/log/job/1/axe/01/job.err',
'#PBS -l walltime=180',
],
id='it handles job name len max unset in config'
id='long-job-name'
),
pytest.param(
{
Expand All @@ -82,7 +82,7 @@
'#PBS -e cylc-run/chop/log/job/1/axe/01/job.err',
'#PBS -l walltime=180',
],
id='it truncates a long job name'
id='truncate-job-name'
),
pytest.param(
{
Expand All @@ -109,7 +109,7 @@
'#PBS -V',
'#PBS -l mem=256gb',
],
id='it adds custom directives'
id='custom-directives'
),
],
)
Expand Down

0 comments on commit 0d1c169

Please sign in to comment.