Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove macos-latest job matrix from Test CI #532

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
architecture:
- x64
- x86
Expand All @@ -39,8 +38,6 @@ jobs:
# Linux and macOS don't have x86 python
- os: "ubuntu-latest"
architecture: x86
- os: "macos-latest"
architecture: x86
# PyPy3 on Windows doesn't seem to work
- os: "windows-latest"
py: "pypy-3.7"
Expand All @@ -49,7 +46,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
architecture: ${{ matrix.architecture }}
Expand All @@ -70,7 +67,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
Expand All @@ -92,7 +89,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
Expand All @@ -105,7 +102,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
Expand All @@ -118,7 +115,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
Expand Down
1 change: 1 addition & 0 deletions deform/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Deform."""

# flake8: noqa
from . import exception # API
from . import form # API
Expand Down
1 change: 0 additions & 1 deletion deform/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@


class reify(object):

"""Put the result of a method which uses this (non-data)
descriptor decorator in the instance dict after the first call,
effectively replacing the decorator with an instance variable."""
Expand Down
1 change: 1 addition & 0 deletions deform/field.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Field."""

# Standard Library
import itertools
import re
Expand Down
1 change: 1 addition & 0 deletions deform/form.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Form."""

# Standard Library
import re

Expand Down
1 change: 1 addition & 0 deletions deform/i18n.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""I18n."""

from translationstring import TranslationStringFactory


Expand Down
1 change: 1 addition & 0 deletions deform/renderer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Renderer."""

from pkg_resources import resource_filename

# Deform
Expand Down
1 change: 1 addition & 0 deletions deform/schema.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Schema."""

# Pyramid
import colander

Expand Down
1 change: 1 addition & 0 deletions deform/template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Template."""

# Standard Library
import os.path

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""API tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_decorator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Decorator tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_exception.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Exception tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_field.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Field tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_form.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Form tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_functional.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functional tests."""

# Standard Library
import datetime
import unittest
Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_interfaces.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Interfaces tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_schema.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Schema tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_template.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Template tests."""

# Standard Library
import unittest

Expand Down
1 change: 1 addition & 0 deletions deform/tests/test_widget.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Widget tests."""

# Standard Library
import unittest
from urllib.parse import unquote
Expand Down
1 change: 1 addition & 0 deletions deform/widget.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Widget."""

# Standard Library
import csv
from io import StringIO
Expand Down
Loading