From 70f2471492cebf798aa635407b6c2fe9772f39a4 Mon Sep 17 00:00:00 2001 From: Mikko Korpela Date: Sat, 20 Jan 2024 16:33:12 +0200 Subject: [PATCH] remove tox --- .github/workflows/ci.yml | 14 +++++++------- requirements.txt | 2 -- tox.ini | 10 ---------- 3 files changed, 7 insertions(+), 19 deletions(-) delete mode 100644 tox.ini diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30477a38..99ecf0dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: - "5.0.0" - "6.0.0" - "6.1.0" + - "7.0.0" steps: - uses: actions/checkout@v4 @@ -21,12 +22,11 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - - name: Install Tox and any other packages + - name: Install Dependencies run: | - pip install tox - pip install -r ./requirements.txt - pip install "robotframework~=${{ matrix.robotframework }}" + pip install pytest + pip install -r ./requirements.txt + pip install "robotframework~=${{ matrix.robotframework }}" - - name: Run Tox - # Run tox using the version of Python in `PATH` - run: tox -e py + - name: Run Pytest + run: pytest tests diff --git a/requirements.txt b/requirements.txt index b3a248f5..90aca46b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,6 +8,4 @@ natsort==8.2.0 pre-commit==2.14.1 pytest==6.2.5 robotframework==4.0.3 -tox==3.24.3 -virtualenv==20.4.4 robotframework-stacktrace==0.4.1 diff --git a/tox.ini b/tox.ini deleted file mode 100644 index eedeb610..00000000 --- a/tox.ini +++ /dev/null @@ -1,10 +0,0 @@ -# content of: tox.ini , put in same dir as setup.py -[tox] -envlist = py39 - -[testenv] -# install pytest in the virtualenv where commands will be executed -deps = pytest -commands = - # NOTE: you can run any command line tool here - not just tests - pytest tests \ No newline at end of file