From 6750fb495cd31586a7346f429790075c0e6e760d Mon Sep 17 00:00:00 2001 From: Josh lloyd Date: Fri, 12 Jan 2024 15:50:17 -0700 Subject: [PATCH] temporarily removing testing in CI/CD because there are no tests --- .github/workflows/ci_workflow.yml | 44 +++++++++++++++---------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci_workflow.yml b/.github/workflows/ci_workflow.yml index 8d98242..1f69b62 100644 --- a/.github/workflows/ci_workflow.yml +++ b/.github/workflows/ci_workflow.yml @@ -25,25 +25,25 @@ jobs: run: | pipx run tox -e lint - pytest: - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - strategy: - matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install Poetry - run: | - pip install poetry - - name: Install dependencies - run: | - poetry install - - name: Test with pytest - run: | - poetry run pytest +# pytest: +# runs-on: ubuntu-latest +# env: +# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} +# strategy: +# matrix: +# python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] +# steps: +# - uses: actions/checkout@v3 +# - name: Set up Python ${{ matrix.python-version }} +# uses: actions/setup-python@v4 +# with: +# python-version: ${{ matrix.python-version }} +# - name: Install Poetry +# run: | +# pip install poetry +# - name: Install dependencies +# run: | +# poetry install +# - name: Test with pytest +# run: | +# poetry run pytest