Skip to content

Commit

Permalink
Merge branch 'library-upgrades'
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipuniverse committed Nov 1, 2023
2 parents 9f46127 + 6c56f60 commit 02376f6
Show file tree
Hide file tree
Showing 5 changed files with 2,278 additions and 1,667 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: snok/install-poetry@v1
with:
version: 1.4.0
version: 1.6.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
Expand Down
5 changes: 2 additions & 3 deletions .python-version
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
3.9.16
3.10.10
3.11.2
3.10.13
3.11.6
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Most of the code for this came from the aioboto3 tests themselves at https://git

## Running the example test

- Poetry 1.4+
- Python 3.9+ (although probably Python 3.7+ will work)
- Poetry 1.6+
- Python 3.10+ (although probably Python 3.7+ will work)

```
poetry install
Expand All @@ -21,16 +21,18 @@ poetry run pytest
Example output:

```console
================================================================================================= test session starts =================================================================================================
platform darwin -- Python 3.9.11, pytest-7.1.2, pluggy-1.0.0
rootdir: /Users/phillip/aioboto3-testing, configfile: pyproject.toml, testpaths: tests
plugins: asyncio-0.18.3
asyncio: mode=auto
=========================================================================================================== test session starts ===========================================================================================================
platform darwin -- Python 3.11.6, pytest-7.4.3, pluggy-1.3.0
rootdir: /Users/phillip/pytest-aioboto3
configfile: pyproject.toml
testpaths: tests
plugins: asyncio-0.21.1, aioboto3-0.1.0
asyncio: mode=Mode.AUTO
collected 1 item

tests/test_s3.py . [100%]
tests/test_s3.py . [100%]

================================================================================================== 1 passed in 0.96s ==================================================================================================
============================================================================================================ 1 passed in 0.94s ============================================================================================================
```

## Installation
Expand Down
Loading

0 comments on commit 02376f6

Please sign in to comment.