Skip to content

Commit

Permalink
Merge c836067 into 3fe3e3b
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenramper1 committed Feb 1, 2024
2 parents 3fe3e3b + c836067 commit 41be7db
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
fail-fast: false

steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -6,6 +6,7 @@ v3.1.1

*Release date: In development*

- Add support for Python 3.12
- Upgrade Sphinx version from 4.* to 7.* to fix readthedocs theme format
- Upgrade readthedocs-sphinx-search to 0.3.2 to fix security vulnerability
- Do not log warning messages when toolium system properties are used
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -3,6 +3,6 @@ selenium~=4.0 # web tests
Appium-Python-Client~=2.3 # mobile tests
Pillow~=9.4 # visual testing
screeninfo~=0.8
lxml==4.9.2
lxml~=5.1
Faker~=18.3
phonenumbers~=8.13
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -67,6 +67,7 @@ def get_long_description():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
Expand Down
2 changes: 1 addition & 1 deletion toolium/test_cases.py
Expand Up @@ -73,7 +73,7 @@ def tearDown(self):
error_message = get_error_message_from_exception(exception)
elif not hasattr(self._outcome, 'errors') and hasattr(self._outcome.result, 'failures') \
and len(self._outcome.result.failures) > 0:
# Python 3.11
# Python >=3.11
traceback = self._outcome.result.failures[0][1]
error_message = get_error_message_from_traceback(traceback)

Expand Down

0 comments on commit 41be7db

Please sign in to comment.