-
-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [#234] rollback to secrets.GITHUB_TOKEN in case of https://dev.to/github/the-githubtoken-in-github-actions-how-it-works-change-permissions-customizations-3cgp * bump version 3.4.2 -> 3.5.0 and update CHANGELOG.md * reduce test matrix to [3.6, 3.10] python versions
- Loading branch information
1 parent
afa3aa6
commit 5b29748
Showing
5 changed files
with
17 additions
and
16 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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest ] | ||
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ] | ||
python-version: [ '3.6', '3.10' ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -54,7 +54,7 @@ jobs: | |
- name: Run tests on Linux (with xvfb) | ||
if: runner.os == 'Linux' | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: GabrielBB/[email protected] | ||
with: | ||
run: | | ||
|
@@ -63,14 +63,14 @@ jobs: | |
- name: Run tests on Windows (without xvfb) | ||
if: runner.os == 'Windows' | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
pipenv run py.test -sv --cov-config .coveragerc --cov-report xml --cov-report term:skip-covered --cov=webdriver_manager --tb=short tests/ | ||
- name: Run tests on MacOS (without xvfb) | ||
if: startsWith(runner.os, 'macOS') | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
pipenv run py.test -sv --cov-config .coveragerc --cov-report xml --cov-report term:skip-covered --cov=webdriver_manager --tb=short tests/ | ||
|
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,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 3.4.1 | ||
current_version = 3.5.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
long_description_content_type="text/markdown", | ||
packages=setuptools.find_packages(exclude=['tests']), | ||
include_package_data=True, | ||
version='3.4.3', | ||
version='3.5.0', | ||
description=('Library provides the way to automatically manage drivers for different browsers'), | ||
author='Sergey Pirogov', | ||
author_email='[email protected]', | ||
|
@@ -36,6 +36,8 @@ | |
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Topic :: Software Development :: ' | ||
'Libraries :: Python Modules', | ||
'Operating System :: Microsoft :: Windows', | ||
|
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 +1 @@ | ||
__version__ = '3.4.3' | ||
__version__ = '3.5.0' |