File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 44
55section " install.base.requirements"
66
7- # Check Firefox version
8- firefox --version
9-
107# Install v1.7 or newer of nginx to support 'if' statement for logging
118sudo apt-add-repository -y ppa:nginx/development
129sudo apt update
@@ -45,11 +42,19 @@ section_end "init.db"
4542
4643
4744section " install.geckodriver.and.selenium"
48- wget https://github.com/mozilla/geckodriver/releases/download/v0.20.0/geckodriver-v0.20.0-linux64.tar.gz
49- sudo tar -xzf geckodriver-v0.20.0-linux64.tar.gz -C /usr/local/bin
50- rm geckodriver-v0.20.0-linux64.tar.gz
45+ GECKO_VER=0.24.0
46+ wget https://github.com/mozilla/geckodriver/releases/download/v${GECKO_VER} /geckodriver-v${GECKO_VER} -linux64.tar.gz
47+ sudo tar -xzf geckodriver-v${GECKO_VER} -linux64.tar.gz -C /usr/local/bin
48+ rm geckodriver-v${GECKO_VER} -linux64.tar.gz
5149which geckodriver
5250geckodriver --version
5351pip install --upgrade selenium
5452python -c " import selenium; print(f'Selenium {selenium.__version__}')"
5553section_end " install.geckodriver.and.selenium"
54+
55+
56+ section " install.deps"
57+ make dependencies
58+ pip list --format=columns
59+ nginx -v
60+ section_end " install.deps"
Original file line number Diff line number Diff line change @@ -2,5 +2,4 @@ cesium>=0.9.10
22joblib >= 0.11
33bokeh == 0.12.5
44pytest-randomly
5- factory-boy == 2.12.0
6- pytest-factoryboy == 2.0.3
5+ factory-boy == 2.11.1
You can’t perform that action at this time.
0 commit comments