Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Sep 12, 2023
1 parent e5bcf1c commit e1a02ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/integration/test_job_environments.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,10 @@ def test_default_environment_1801(self):
assert job_env.pwd.endswith("/working")

# check that env variables job
assert job_env.jobconf_env_var =="YEAH"
assert job_env.container_env_var =="UNSET"
# - variables defined via env in job_conf are set
# - container specific vars via <param id="docker_env_.."> are not
assert job_env.jobconf_env_var == "YEAH"
assert job_env.container_env_var == "UNSET"

# Newer tools get isolated home directories in job_directory/home
job_directory = os.path.dirname(job_env.pwd)
Expand Down

0 comments on commit e1a02ff

Please sign in to comment.