diff --git a/.gitignore b/.gitignore index 9cc487f2de7..8b9427bf59e 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,10 @@ nosetests.xml .pytest_cache/* .pytest_config +# Azure Pipelines +junit +test-results.xml + # Developer .idea .project diff --git a/requirements.txt b/requirements.txt index cbf765c4123..257d1bd8052 100755 --- a/requirements.txt +++ b/requirements.txt @@ -11,6 +11,7 @@ urllib3==1.24.1 pytest>=4.4.0 pytest-cov>=2.6.1 pytest-html>=1.20.0 +pytest-metadata>=1.8.0 pytest-rerunfailures>=7.0 pytest-xdist>=1.27.0 parameterized>=0.7.0 diff --git a/setup.py b/setup.py index d5a359381ce..f2e24118eba 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='seleniumbase', - version='1.22.2', + version='1.22.3', description='Reliable Browser Automation & Testing Framework', long_description=long_description, long_description_content_type='text/markdown', @@ -64,6 +64,7 @@ 'pytest>=4.4.0', 'pytest-cov>=2.6.1', 'pytest-html>=1.20.0', + 'pytest-metadata>=1.8.0', 'pytest-rerunfailures>=7.0', 'pytest-xdist>=1.27.0', 'parameterized>=0.7.0',