diff --git a/README.md b/README.md index 1b38d674587..96d0a1aed51 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ pytest my_first_test.py --demo_mode ``` git clone https://github.com/seleniumbase/SeleniumBase.git cd SeleniumBase -pip install -e . +pip install -r requirements.txt +python setup.py develop ``` You can also install SeleniumBase from [PyPI](https://pypi.python.org/pypi/seleniumbase): [pypi](https://pypi.python.org/pypi/seleniumbase) @@ -29,7 +30,7 @@ pip install seleniumbase You can also install a specific GitHub branch of SeleniumBase: ``` -pip install -e git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase +pip install git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=seleniumbase ``` ### Download a web driver: diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7a1bdc9284f..bd13e8b0909 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,6 +28,9 @@ jobs: - script: python -m pip install --upgrade pip && pip install -r requirements.txt displayName: 'Install dependencies' + - script: python setup.py develop + displayName: 'Install SeleniumBase' + - script: | sudo apt install google-chrome-stable sudo apt-get install firefox diff --git a/requirements.txt b/requirements.txt index 180ea4f9cc4..575b4944a6b 100755 --- a/requirements.txt +++ b/requirements.txt @@ -23,4 +23,3 @@ pyotp>=2.2.7 boto>=2.49.0 flake8>=3.7.7 PyVirtualDisplay>=0.2.1 --e . diff --git a/setup.py b/setup.py index 7277c67abae..945f2d06ba6 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='seleniumbase', - version='1.23.5', + version='1.23.6', description='Reliable Browser Automation & Testing Framework', long_description=long_description, long_description_content_type='text/markdown',