diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index b0a1fae..80bdb05 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -33,4 +33,4 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - pytest + python setup.py test diff --git a/tnbs/benchmark_exe.sh b/tnbs/benchmark_exe.sh deleted file mode 100644 index 6289110..0000000 --- a/tnbs/benchmark_exe.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -#cd ./ProbabilityLoading/ -cd ./AmplitudeEstimation/ -python my_benchmark_execution.py -python ./neasqc_benchmark.py diff --git a/tnbs/test_my_lib.py b/tnbs/test_my_lib.py deleted file mode 100644 index 26d0ac7..0000000 --- a/tnbs/test_my_lib.py +++ /dev/null @@ -1,25 +0,0 @@ -# -*- coding : utf-8 -*- - -""" -Test for this module -""" - - -# from . import some_function, MyClass -# class TestMyClass: -# """ -# Testing MyClass -# """ -# def test_instantiation(self): -# # pylint: disable=no-self-use -# """ -# Testing the constructor -# """ -# MyClass(1, 1, 2) -# MyClass() -# -# def test_some_fucntion(): -# """ -# Testing some_function -# """ -# assert 4 == some_function(2)