Skip to content

Commit b0563d5

Browse files
authored
Merge pull request #1315 from seleniumbase/a-few-fixes
A few fixes (Dockerfile and "behave" Dashboard)
2 parents 12f049a + 8f9fb31 commit b0563d5

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RUN cd /SeleniumBase && pip3 install .
8989
# Download WebDrivers
9090
#=====================
9191
RUN wget https://github.com/mozilla/geckodriver/releases/download/v0.31.0/geckodriver-v0.31.0-linux64.tar.gz
92-
RUN tar -xvzf geckodriver-v0.31.0-linux32.tar.gz
92+
RUN tar -xvzf geckodriver-v0.31.0-linux64.tar.gz
9393
RUN chmod +x geckodriver
9494
RUN mv geckodriver /usr/local/bin/
9595
RUN wget https://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip

mkdocs_build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ lunr==0.6.2
2525
nltk==3.7
2626
watchdog==2.1.7
2727
mkdocs==1.3.0
28-
mkdocs-material==8.2.14
28+
mkdocs-material==8.2.15
2929
mkdocs-exclude-search==0.6.4
3030
mkdocs-simple-hooks==0.1.5
3131
mkdocs-material-extensions==1.0.3

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "3.0.0"
2+
__version__ = "3.0.1"

seleniumbase/behave/behave_sb.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ def dashboard_pre_processing():
761761

762762
command_args = sys.argv[1:]
763763
command_string = " ".join(command_args)
764+
command_string = command_string.replace("--quiet", "")
765+
command_string = command_string.replace("-q", "")
764766
proc = subprocess.Popen(
765767
"behave -d %s --show-source" % command_string,
766768
stdout=subprocess.PIPE,

0 commit comments

Comments
 (0)