From 6e519479c2839f333e1723fbc1e873c803278ba2 Mon Sep 17 00:00:00 2001 From: JnyJny Date: Sat, 9 Jan 2021 21:01:40 -0600 Subject: [PATCH] Removed old test action --- .github/workflows/python-pytest-37.yml | 30 -------------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/python-pytest-37.yml diff --git a/.github/workflows/python-pytest-37.yml b/.github/workflows/python-pytest-37.yml deleted file mode 100644 index c9cdc5f..0000000 --- a/.github/workflows/python-pytest-37.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This workflow will install Python dependencies, run tests and lint with a single version of Python -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Pytest 3.7 - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.7 - uses: actions/setup-python@v2 - with: - python-version: 3.7 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install poetry pytest - poetry install - - name: Test with pytest - run: | - poetry run pytest -m "not slow"