-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from Pylons/drop-py2
- Loading branch information
Showing
13 changed files
with
114 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: Build and test | ||
|
||
on: | ||
# Only on pushes to master or one of the release branches we build on push | ||
push: | ||
branches: | ||
- master | ||
- "[0-9].[0-9]+-branch" | ||
tags: | ||
# Build pull requests | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
py: | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "pypy-3.7" | ||
os: | ||
- "ubuntu-latest" | ||
# - "windows-latest" | ||
- "macos-latest" | ||
architecture: | ||
- x64 | ||
- x86 | ||
exclude: | ||
# Linux and macOS don't have x86 python | ||
- os: "ubuntu-latest" | ||
architecture: x86 | ||
- os: "macos-latest" | ||
architecture: x86 | ||
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}" | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.py }} | ||
architecture: ${{ matrix.architecture }} | ||
- run: pip install tox | ||
- name: Running tox | ||
run: tox -e py | ||
# coverage: | ||
# runs-on: ubuntu-latest | ||
# name: Validate coverage | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Setup python 3.10 | ||
# uses: actions/setup-python@v2 | ||
# with: | ||
# python-version: "3.10" | ||
# architecture: x64 | ||
|
||
# - run: pip install tox | ||
# - run: tox -e py310,coverage | ||
docs: | ||
runs-on: ubuntu-latest | ||
name: Build the documentation | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.10" | ||
architecture: x64 | ||
- run: pip install tox | ||
- run: tox -e docs | ||
# lint: | ||
# runs-on: ubuntu-latest | ||
# name: Lint the package | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Setup python | ||
# uses: actions/setup-python@v2 | ||
# with: | ||
# python-version: "3.10" | ||
# architecture: x64 | ||
# - run: pip install tox | ||
# - run: tox -e lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ htmlcov | |
.eggs | ||
build | ||
dist | ||
env* | ||
tests/fake_packages/FakeApp.egg/EGG-INFO |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
from pprint import pprint | ||
import sys | ||
|
||
import pkg_resources | ||
|
||
from paste.deploy.compat import print_ | ||
import sys | ||
|
||
|
||
def test_load_package(): | ||
print_('Path:') | ||
print('Path:') | ||
pprint(sys.path) | ||
print_(pkg_resources.require('FakeApp')) | ||
print(pkg_resources.require('FakeApp')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters