Skip to content

Commit

Permalink
Merge pull request #216 from reportportal/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
HardNorth committed Jul 10, 2023
2 parents 7405abf + 5981032 commit e566fa4
Show file tree
Hide file tree
Showing 10 changed files with 185 additions and 217 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 119
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.7', '3.6', '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -53,7 +53,7 @@ jobs:
run: tox

- name: Upload coverage to Codecov
if: matrix.python-version == 3.6 && success()
if: matrix.python-version == 3.7 && success()
uses: codecov/codecov-action@v3
with:
files: coverage.xml
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]
### Added
- `launch_uuid_print` and `print_output` arguments in `RPClient` class constructor, by @HardNorth
### Removed
- Python 2.7, 3.6 support, by @HardNorth

## [5.3.5]
### Added
- `__getstate__` and `__setstate__` methods in `RPClient` class to make it possible to pickle it, by @HardNorth
### Changed
- `token` field of `RPClient` class was renamed to `api_key` to maintain common convention, by @HardNorth
Expand Down
Loading

0 comments on commit e566fa4

Please sign in to comment.