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 4
4
5
5
section " install.base.requirements"
6
6
7
- # Check Firefox version
8
- firefox --version
9
-
10
7
# Install v1.7 or newer of nginx to support 'if' statement for logging
11
8
sudo apt-add-repository -y ppa:nginx/development
12
9
sudo apt update
@@ -45,11 +42,19 @@ section_end "init.db"
45
42
46
43
47
44
section " 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
51
49
which geckodriver
52
50
geckodriver --version
53
51
pip install --upgrade selenium
54
52
python -c " import selenium; print(f'Selenium {selenium.__version__}')"
55
53
section_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
2
2
joblib >= 0.11
3
3
bokeh == 0.12.5
4
4
pytest-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