From b3a4f31f1bbd991e4992dbbc8aca86c170b2b83c Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Tue, 2 Apr 2019 14:56:47 -0400 Subject: [PATCH 1/3] Add pytest-metadata to the requirements --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) 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..9f70e20d914 100755 --- a/setup.py +++ b/setup.py @@ -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', From 389c8498e77baa51fbe486b5c421744737793973 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Tue, 2 Apr 2019 14:59:05 -0400 Subject: [PATCH 2/3] Add junit test results to .gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) 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 From 1c6741928eff711ab6dbfad6af4b85ce56759682 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Tue, 2 Apr 2019 14:59:32 -0400 Subject: [PATCH 3/3] Version 1.22.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9f70e20d914..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',