From a1c9a1f30c50363610e95f0d54ff4be00eecfd25 Mon Sep 17 00:00:00 2001 From: alexPatrie Date: Tue, 5 Mar 2024 14:00:11 -0500 Subject: [PATCH] removed fix notebooks workflow --- .github/workflows/fixNotebooks.yaml | 32 ----------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/fixNotebooks.yaml diff --git a/.github/workflows/fixNotebooks.yaml b/.github/workflows/fixNotebooks.yaml deleted file mode 100644 index 0f0ef921d..000000000 --- a/.github/workflows/fixNotebooks.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Tests - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - fix-notebooks: - runs-on: ubuntu-latest - - steps: - - name: Check out repository - uses: actions/checkout@main - with: - ref: main - fetch-depth: 0 - - - name: Set up Python - uses: actions/setup-python@main - with: - python-version: '3.10' - - - id: fixNotebooks - name: Fix notebook output - uses: GabrielBB/xvfb-action@v1 - with: - working-directory: ${{ github.workspace }} - run: | - python -m pip install . - python -c "from biosimulator_processes.utils import fix_notebooks_execution_count; fix_notebooks_execution_count(); exit();"