Skip to content

Commit

Permalink
Merge pull request #322 from seleniumbase/editable-install-fix
Browse files Browse the repository at this point in the history
Editable mode install update
  • Loading branch information
mdmintz committed Apr 26, 2019
2 parents 450db0f + 0907cf0 commit 5c45e27
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -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): [<img src="https://img.shields.io/badge/pypi-seleniumbase-22AAEE.svg" alt="pypi" />](https://pypi.python.org/pypi/seleniumbase)
Expand All @@ -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
```

### <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Download a web driver:
Expand Down
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Expand Up @@ -23,4 +23,3 @@ pyotp>=2.2.7
boto>=2.49.0
flake8>=3.7.7
PyVirtualDisplay>=0.2.1
-e .
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 5c45e27

Please sign in to comment.