Skip to content

Commit

Permalink
chore: snub windows tests which hang and update docs runner version t…
Browse files Browse the repository at this point in the history
…o 11
  • Loading branch information
robcxyz committed Dec 17, 2023
1 parent cc08ba5 commit 057c60d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

- uses: actions/setup-python@v1
with:
python-version: "3.12"
python-version: "3.11"

- name: Install dependencies
run: |
Expand Down
88 changes: 44 additions & 44 deletions .github/workflows/main-windows.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
name: windows-tests

on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
name:
- "windows-py310"
- "windows-py311"

include:
- name: "windows-py310"
python: "3.10"
os: windows-latest
tox_env: "py310"
- name: "windows-py311"
python: "3.11"
os: windows-latest
tox_env: "py311"

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox virtualenv
- name: Test build
run: "tox -e ${{ matrix.tox_env }}"
#name: windows-tests
#
#on:
# push:
# branches:
# - main
# tags:
# - "*"
# pull_request:
# branches:
# - "*"
#
#jobs:
# build:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# name:
# - "windows-py310"
# - "windows-py311"
#
# include:
# - name: "windows-py310"
# python: "3.10"
# os: windows-latest
# tox_env: "py310"
# - name: "windows-py311"
# python: "3.11"
# os: windows-latest
# tox_env: "py311"
#
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python }}
# uses: actions/setup-python@v1
# with:
# python-version: ${{ matrix.python }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install tox virtualenv
# - name: Test build
# run: "tox -e ${{ matrix.tox_env }}"

0 comments on commit 057c60d

Please sign in to comment.