diff --git a/.github/workflows/QueryWriteTest.yml b/.github/workflows/QueryWriteTest.yml deleted file mode 100644 index 0178c6c..0000000 --- a/.github/workflows/QueryWriteTest.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: QueryWriteTest - -on: - push: - -jobs: - linux: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.9,'3.10'] - - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Test Environment - run: | - python -m pip install --upgrade pip - sudo apt-get install libglu1-mesa-dev xvfb - python -m pip install pytest pytest-xvfb - - name: Dependencies - run: | - python setup.py install - - name: Test using ModernGL - run: | - python -m pytest -s testing/QueryWriteTest.py - - macos: - strategy: - matrix: - python-version: [3.9,'3.10'] - os-version: [macos-11, macos-12] - - runs-on: ${{ matrix.os-version }} - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Dependencies - run: | - python -m pip install --upgrade pip setuptools - python -m pip install pytest - python setup.py install - - name: Test using ModernGL - run: | - python -m pytest -s testing/QueryWriteTest.py diff --git a/.github/workflows/cinema.yml b/.github/workflows/cinema.yml deleted file mode 100644 index b3fe106..0000000 --- a/.github/workflows/cinema.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: cinema script test - -on: - push: - -jobs: - linux: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.9,'3.10'] - - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Dependencies - run: | - pip install --upgrade pip - pip install . - - name: Test cinema script - run: | - cinema --version - cinema --help - - macos: - strategy: - matrix: - python-version: [3.9,'3.10'] - os-version: [macos-11, macos-12] - - runs-on: ${{ matrix.os-version }} - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Dependencies - run: | - pip install --upgrade pip - pip install . - - name: Test cinema script - run: | - cinema --version - cinema --help