diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index f902687..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,33 +0,0 @@ -# SPDX-FileCopyrightText: 2021 Dan Halbert for Adafruit Industries -# -# SPDX-License-Identifier: Unlicense - -name: Run Tests - -on: [pull_request, push] - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Set up Python 3.x - uses: actions/setup-python@v1 - with: - python-version: "3.x" - - name: Versions - run: | - python3 --version - - name: Checkout Current Repo - uses: actions/checkout@v1 - with: - submodules: true - - name: Install pytest - run: pip install pytest - - name: Install locally - run: | - for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do - sed -i -e "s/0.0.0+auto.0/1.2.3/" $file; - done; - pip install . - - name: Run tests - run: pytest