From 3bd709d814237a0a5fdeddb42aa8a5104da66f96 Mon Sep 17 00:00:00 2001
From: Lukas Leufen <l.leufen@fz-juelich.de>
Date: Thu, 14 Jul 2022 15:07:42 +0200
Subject: [PATCH] remove py version from scripts

---
 CI/run_pytest.sh          | 2 +-
 CI/run_pytest_coverage.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CI/run_pytest.sh b/CI/run_pytest.sh
index baa7ef8e..060569ab 100644
--- a/CI/run_pytest.sh
+++ b/CI/run_pytest.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 # run pytest for all run_modules
-python3.6 -m pytest --html=report.html --self-contained-html test/ | tee test_results.out
+python -m pytest --html=report.html --self-contained-html test/ | tee test_results.out
 
 IS_FAILED=$?
 
diff --git a/CI/run_pytest_coverage.sh b/CI/run_pytest_coverage.sh
index 24d916b1..f6efaf2f 100644
--- a/CI/run_pytest_coverage.sh
+++ b/CI/run_pytest_coverage.sh
@@ -1,7 +1,7 @@
 #!/usr/bin/env bash
 
 # run coverage twice, 1) for html deploy 2) for success evaluation
-python3.6 -m pytest --cov=mlair --cov-report term  --cov-report html test/ | tee coverage_results.out
+python -m pytest --cov=mlair --cov-report term  --cov-report html test/ | tee coverage_results.out
 
 IS_FAILED=$?
 
-- 
GitLab