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

Release 4.0.9 #170

Merged
merged 54 commits into from
Dec 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
0e471d7
Adding support for latest python versions
anibalinn Oct 16, 2024
99fc720
fix: replace scenario_info.id_hash with uuid
iamkenos Oct 17, 2024
a1d5749
Updating setuptools version in pyproject.toml
anibalinn Oct 17, 2024
df45f25
Updating setup to be more resilient to setuptools, and updating the g…
anibalinn Oct 17, 2024
c0c2357
Reverting changes
anibalinn Oct 17, 2024
1d0a6b3
Installing setuptools as part of github actions
anibalinn Oct 17, 2024
9e5853d
Updating setuptools version
anibalinn Oct 17, 2024
81e97eb
Updating supported python versions until 3.12.x
anibalinn Oct 17, 2024
3bb1ce1
Updated python versions in python-package.yml
anibalinn Oct 17, 2024
8ee6aea
Merge pull request #171 from iamkenos/fix/expand-scenario-on-html-report
hrcorval Oct 17, 2024
c8b95fe
Adapted the github workflow to extend the validations to multiple OSs…
anibalinn Nov 22, 2024
eeafe65
Fixing pyproject.toml to enable executions in Windows OSs
anibalinn Nov 22, 2024
6009fac
Additional fixes when installing BehaveX in Windows OSs as part of Gi…
anibalinn Nov 22, 2024
693caed
Additional fixes when installing BehaveX in Windows OSs as part of Gi…
anibalinn Nov 22, 2024
698c5ac
Cosmetic change in github actions
anibalinn Nov 22, 2024
2ebc3af
Updating tests execution path to work across multiple OSs
anibalinn Nov 22, 2024
782030d
Updating tests execution path to work across multiple OSs
anibalinn Nov 22, 2024
e925704
Updating tests execution path to work across multiple OSs
anibalinn Nov 22, 2024
d59128d
Fixing issue when trying to remove behave logs
anibalinn Nov 22, 2024
7ec11cb
Renaming try_operate_descriptor by retry_file_operation
anibalinn Nov 22, 2024
06bbcfe
Fixing windows path
anibalinn Nov 22, 2024
154dbd6
Fix done in explore_features to properly deal with Windows paths
anibalinn Nov 22, 2024
a612738
Updating windows tests path
anibalinn Nov 22, 2024
8ce27b3
Updating windows tests path
anibalinn Nov 22, 2024
6c8132b
Improvement done to properly manage the features paths across platforms
anibalinn Nov 26, 2024
e018176
Fixing encoding issue when printing the progress bar in Windows OSs
anibalinn Nov 26, 2024
0fefd76
Fixing import issues
anibalinn Nov 26, 2024
19cb87c
Additional encoding changes to properly del with Windows OS executions
anibalinn Nov 26, 2024
4937164
Updating the progress bar for cross platform compatibility
anibalinn Nov 26, 2024
cdaa979
Updating the progress bar for cross platform compatibility
anibalinn Nov 26, 2024
8033009
Updated test scenarios to properly deal with multiplatform paths
anibalinn Nov 26, 2024
c909e19
upgrading to 4.0.9rc3
anibalinn Nov 26, 2024
caca728
Fixing issue when analyzing feature files in Windows OS
anibalinn Dec 2, 2024
1986363
Update RC version
anibalinn Dec 2, 2024
c608eac
Update RC version
anibalinn Dec 2, 2024
80b9890
Fixing issue when importing a method in IncludePathsMatch
anibalinn Dec 2, 2024
a97b89d
Adding scenarios to validate behavex arguments
anibalinn Dec 3, 2024
529008c
Fixing execution issues in Windows OS when running BehaveX with a fea…
anibalinn Dec 4, 2024
a9394ee
Updating library version
anibalinn Dec 4, 2024
457ff07
Updating changes done in latest version and library version
anibalinn Dec 4, 2024
d4218bd
Adding method needed for backward compatibility reasons
anibalinn Dec 5, 2024
10f46d0
Cosmetic update in CHANGES.rst
anibalinn Dec 5, 2024
4e3f196
Adding more scenarios and fixing issue with internal BehaveX tag not …
anibalinn Dec 5, 2024
99d3e88
Updating RC version
anibalinn Dec 5, 2024
1243933
Improvement done in github actions
anibalinn Dec 6, 2024
d0d91f5
cosmetic change
anibalinn Dec 6, 2024
95dc88c
cosmetic change
anibalinn Dec 6, 2024
2a5416d
Fix done when managing tags
anibalinn Dec 6, 2024
208f45e
Updating RC version
anibalinn Dec 6, 2024
a84ff0b
Adding report.json as a github actions artifact
anibalinn Dec 6, 2024
6500f6d
Adding report.json as a github actions artifact
anibalinn Dec 6, 2024
6b5afe5
Adding report.json as a github actions artifact
anibalinn Dec 6, 2024
4e97223
Adding report.json as a github actions artifact
anibalinn Dec 6, 2024
8808c60
final release
anibalinn Dec 6, 2024
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
Adapted the github workflow to extend the validations to multiple OSs…
… (as before this the tests were executed only in ubuntu OS)
anibalinn committed Nov 22, 2024
commit c8b95fe13ff48e0d9ffcc05d47e9897a681d2ded
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Test behavex in latest python versions


on: [push, pull_request]

jobs:
test-behavex:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps: