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

File support #145

Merged
merged 29 commits into from
Oct 14, 2020
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
68585b3
add file utils
leahein Jul 12, 2020
aabd2de
initial add for file support
leahein Jul 12, 2020
f6ffdd3
Implement file handling in aiohttp.py
quasimik Jul 16, 2020
e637983
Fix JSON serialization, remove comments, conform to double quotes
quasimik Jul 31, 2020
9e86b03
Fix more JSON serialization
quasimik Jul 31, 2020
c2e38dc
Cleanup
quasimik Jul 31, 2020
e6ae391
FF, merge
quasimik Jul 31, 2020
8839141
Blackened
quasimik Jul 31, 2020
194d645
fix: safe check if parameters are none on aiohttp
KingDarBoja Sep 19, 2020
e02399a
Merge branch 'master' into file-support
KingDarBoja Sep 19, 2020
2a020ad
chore: generate docs with sphinx (#117)
KingDarBoja Sep 20, 2020
25c243a
GitHub Actions: do the tests for each push
leszekhanusz Sep 27, 2020
40f2aaf
Tests: add pypy3 tests again
leszekhanusz Sep 27, 2020
57bb4aa
GitHub Actions: try to send coverage to coveralls.io
leszekhanusz Sep 27, 2020
c2f1840
GitHub actions: try to send coverage to coveralls.io (2)
leszekhanusz Sep 27, 2020
1ba67a7
GitHub Actions: migrating from coveralls to codecov
leszekhanusz Sep 27, 2020
e72bd6b
GitHub Actions: fix typo
leszekhanusz Sep 27, 2020
9e6dc7e
README.md fix badges, add link to doc and leave only basic example (#…
leszekhanusz Sep 27, 2020
53c7a32
Single-sourcing the version in a __version__.py file (#142)
leszekhanusz Sep 27, 2020
4d11c89
Bump version number
leszekhanusz Sep 27, 2020
eec9220
Only upload files if the upload_files flag is True
leszekhanusz Oct 3, 2020
f647803
Adding tests for the file upload functionality
leszekhanusz Oct 3, 2020
62c6a58
Add docs
leszekhanusz Oct 3, 2020
cda8263
Merge branch 'master' into file-support
leszekhanusz Oct 6, 2020
27a01c7
Merge branch 'master' into file-support
leszekhanusz Oct 6, 2020
e488612
fix file upload tests on windows and add a binary file upload test
leszekhanusz Oct 10, 2020
e92eee2
fix mypy
leszekhanusz Oct 10, 2020
19e4e25
Merge branch 'master' into file-support
leszekhanusz Oct 14, 2020
a96ed24
Merge branch 'master' into file-support
leszekhanusz Oct 14, 2020
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
Prev Previous commit
Next Next commit
GitHub Actions: try to send coverage to coveralls.io
leszekhanusz committed Oct 3, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 57bb4aabe4fafdb29aadd824f276b210e3fc297c
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -24,3 +24,20 @@ jobs:
run: tox
env:
TOXENV: ${{ matrix.toxenv }}
- if: matrix.python-version == "3.8"
name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.python-version }}
parallel: true

coverage:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true