From 1cb26d48b69d724ac848e6e3b68b0e91f0a8c800 Mon Sep 17 00:00:00 2001 From: Edwin Eefting Date: Sun, 17 May 2020 22:30:29 +0200 Subject: [PATCH] fix for python2 test --- .gitignore | 2 +- run_tests | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 32056fa..96305c8 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ zfs_autobackup.egg-info __pycache__ .coverage *.pyc - +python2.env diff --git a/run_tests b/run_tests index fce3f15..e3c4558 100755 --- a/run_tests +++ b/run_tests @@ -16,7 +16,7 @@ if ! [ -e /root/.ssh/id_rsa ]; then ssh -oStrictHostKeyChecking=no localhost true || exit 1 fi -coverage run --source bin.zfs_autobackup -m unittest -v +coverage run --source bin.zfs_autobackup -m unittest discover -v EXIT=$? echo