diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-16 11:43:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 11:43:44 -0400 |
commit | 1961769edfc7f0af8f727cb03bde0af13785726a (patch) | |
tree | 25bac8a0225381fd72636c04b167cfa52c53f766 /test/python/docker/__init__.py | |
parent | 3ef124b03f1599645c4a5d71ccd90dc66d2cfe5c (diff) | |
parent | be51173ed39c2d16205b0469287b5d6a7271c2c5 (diff) | |
download | podman-1961769edfc7f0af8f727cb03bde0af13785726a.tar.gz podman-1961769edfc7f0af8f727cb03bde0af13785726a.tar.bz2 podman-1961769edfc7f0af8f727cb03bde0af13785726a.zip |
Merge pull request #10950 from edsantiago/python_flake_fix
APIv2 (python) tests: fix flake
Diffstat (limited to 'test/python/docker/__init__.py')
-rw-r--r-- | test/python/docker/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/python/docker/__init__.py b/test/python/docker/__init__.py index 59b7987f4..f75185192 100644 --- a/test/python/docker/__init__.py +++ b/test/python/docker/__init__.py @@ -27,7 +27,7 @@ class Podman(object): # No support for tmpfs (/tmp) or extfs (/var/tmp) # self.cmd.append("--storage-driver=overlay") - if os.getenv("DEBUG"): + if os.getenv("PODMAN_PYTHON_TEST_DEBUG"): self.cmd.append("--log-level=debug") self.cmd.append("--syslog=true") |