From 8c00c3833a5fa97c5fb4b415a6c816c4b1ddd9f5 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Thu, 28 May 2020 09:05:06 -0400 Subject: [PATCH] testing: change two test scripts to refer to python3 Since python2 is no longer supported we should now use python3 in our test scripts. Change the shebang lines for two test scripts to refer to python3. Note that t/sgunmap-test.py and t/sgunmap-perf.py still refer to python2. I no longer have the means to test those two scripts and am leaving those unchanged. Signed-off-by: Vincent Fu --- t/steadystate_tests.py | 3 +-- t/strided.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/t/steadystate_tests.py b/t/steadystate_tests.py index e99b655c..e8bd768c 100755 --- a/t/steadystate_tests.py +++ b/t/steadystate_tests.py @@ -1,5 +1,4 @@ -#!/usr/bin/env python -# Note: this script is python2 and python3 compatible. +#!/usr/bin/env python3 # # steadystate_tests.py # diff --git a/t/strided.py b/t/strided.py index 6d34be8a..45e6f148 100755 --- a/t/strided.py +++ b/t/strided.py @@ -1,5 +1,4 @@ -#!/usr/bin/python -# Note: this script is python2 and python3 compatible. +#!/usr/bin/env python3 # # strided.py # -- 2.25.1