-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into empty-files-key-multipart
- Loading branch information
Showing
27 changed files
with
340 additions
and
523 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,60 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
package: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: "Checkout repository" | ||
uses: "actions/checkout@v3" | ||
|
||
- name: "Setup Python" | ||
uses: "actions/setup-python@v4" | ||
with: | ||
python-version: "3.x" | ||
cache: "pip" | ||
cache-dependency-path: '**/setup.py' | ||
|
||
- name: "Check packages" | ||
run: | | ||
python -m pip install -U setuptools wheel twine | ||
python setup.py sdist bdist_wheel | ||
python -m twine check --strict dist/* | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11"] | ||
os: | ||
- macos-latest | ||
- windows-latest | ||
- ubuntu-latest | ||
|
||
runs-on: ${{ matrix.os }} | ||
name: ${{ fromJson('{"macos-latest":"macOS","windows-latest":"Windows","ubuntu-latest":"Ubuntu"}')[matrix.os] }} ${{ matrix.python-version }} | ||
steps: | ||
- name: "Checkout repository" | ||
uses: "actions/checkout@v3" | ||
|
||
- name: "Setup Python ${{ matrix.python-version }}" | ||
uses: "actions/setup-python@v4" | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# Fails on Python 2 + Windows | ||
# cache: "pip" | ||
# cache-dependency-path: '**/setup.py' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
- name: Test with tox | ||
run: tox |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,6 @@ Patches and Suggestions | |
|
||
- Sam Bull (@greatestape) | ||
|
||
- Florence Blanc-Renaud <[email protected]> (@flo-renaud) | ||
- Chris van Marle (https://github.com/qistoph) | ||
|
||
- Florence Blanc-Renaud <[email protected]> (@flo-renaud) |
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,4 +1,5 @@ | ||
pytest | ||
mock;python_version<"3.3" | ||
pyopenssl | ||
git+git://github.com/sigmavirus24/betamax | ||
git+https://github.com/betamaxpy/betamax | ||
trustme |
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
Oops, something went wrong.