Use "python setup.py develop" instead of "python setup.py install"

This commit is contained in:
Michael Mintz 2017-12-06 02:00:43 -05:00
parent 61f33b001f
commit 33d098e656
3 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ addons:
install:
- "pip install --upgrade pip"
- "pip install -r requirements.txt"
- "python setup.py install"
- "python setup.py develop"
- "sudo rm -f /etc/boto.cfg"
before_script:
- "flake8 seleniumbase/*.py"

View File

@ -101,7 +101,7 @@ COPY setup.py /SeleniumBase/setup.py
RUN pip install --upgrade pip
RUN pip install --upgrade setuptools
RUN cd /SeleniumBase && ls && pip install -r requirements.txt --upgrade
RUN cd /SeleniumBase && python setup.py install
RUN cd /SeleniumBase && python setup.py develop
#==========================================
# Create entrypoint and grab example tests

View File

@ -46,7 +46,7 @@ To install a clone of SeleniumBase, use:
```bash
pip install -r requirements.txt --upgrade
python setup.py install
python setup.py develop
```
(<i>Repeat this step if you make changes to [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py) or to SeleniumBase libraries. If you're installing SeleniumBase on a machine that uses an older version of Firefox, such as version 46 or earlier, use `server_requirements.txt` and `server_setup.py`.</i>)
@ -112,7 +112,7 @@ pytest my_first_test.py --with-selenium --browser=chrome --demo_mode
You can override the default wait time by either updating [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py) or by using ``--demo_sleep={NUM}`` when using Demo Mode. (NOTE: If you use ``--demo_sleep={NUM}`` without using ``--demo_mode``, nothing will happen.)
If you ever make any changes to your local copy of ``settings.py``, you may need to run ``python setup.py install`` for those changes to take effect.
If you ever make any changes to your local copy of ``settings.py``, you may need to run ``python setup.py develop`` for those changes to take effect.
```bash
nosetests my_first_test.py --with-selenium --browser=chrome --demo_mode --demo_sleep=1.2