Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
pyodide
Commits
153c6324
Commit
153c6324
authored
Aug 28, 2018
by
Roman Yurchak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy test data in a pytest fixture
parent
5c3b2eaa
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
12 deletions
+24
-12
.circleci/config.yml
.circleci/config.yml
+2
-3
Makefile
Makefile
+2
-6
README.md
README.md
+1
-1
setup.cfg
setup.cfg
+4
-0
test/conftest.py
test/conftest.py
+15
-2
No files found.
.circleci/config.yml
View file @
153c6324
...
...
@@ -63,7 +63,6 @@ jobs:
ccache -z
make
ccache -s
make build/test.html build/test_data.txt
-
save_cache
:
paths
:
...
...
@@ -93,7 +92,7 @@ jobs:
source pyodide-env/bin/activate
export PATH=$PWD/firefox:$PATH
pytest test -v -
-instafail -
k firefox
pytest test -v -k firefox
test-chrome
:
<<
:
*defaults
...
...
@@ -110,7 +109,7 @@ jobs:
source pyodide-env/bin/activate
export PATH=$PWD/firefox:$PATH
pytest test -v -
-instafail -
k chrome
pytest test -v -k chrome
deploy
:
machine
:
...
...
Makefile
View file @
153c6324
...
...
@@ -101,12 +101,8 @@ build/renderedhtml.css: src/renderedhtml.less
lessc
$<
$@
test
:
all build/test.html build/test_data.txt
py.test
test
-v
-r
sxX
--instafail
build/test_data.txt
:
test/data.txt
cp test
/data.txt build/test_data.txt
test
:
all
pytest
test
/
-v
lint
:
...
...
README.md
View file @
153c6324
...
...
@@ -43,7 +43,7 @@ Install [geckodriver](https://github.com/mozilla/geckodriver/releases) and
[
chromedriver
](
https://sites.google.com/a/chromium.org/chromedriver/downloads
)
somewhere
on your
`PATH`
.
`
make test
`
`
pytest test/
`
# Benchmarking
...
...
setup.cfg
0 → 100644
View file @
153c6324
[tool:pytest]
addopts =
-r sxX
--instafail
test/conftest.py
View file @
153c6324
...
...
@@ -7,6 +7,7 @@ import multiprocessing
import
os
import
pathlib
import
queue
import
shutil
import
sys
try
:
...
...
@@ -39,6 +40,10 @@ class SeleniumWrapper:
driver
=
self
.
get_driver
()
wait
=
WebDriverWait
(
driver
,
timeout
=
20
)
if
not
(
BUILD_PATH
/
'test.html'
).
exists
():
# selenium does not expose HTTP response codes
raise
ValueError
(
f"
{
(
BUILD_PATH
/
'test.html'
).
resolve
()
}
"
f"does not exist!"
)
driver
.
get
(
f'http://127.0.0.1:
{
PORT
}
/test.html'
)
wait
.
until
(
PyodideInited
())
self
.
wait
=
wait
...
...
@@ -109,8 +114,16 @@ class ChromeWrapper(SeleniumWrapper):
if
pytest
is
not
None
:
@
pytest
.
fixture
(
scope
=
'session'
)
def
setup_resources
():
shutil
.
copyfile
(
TEST_PATH
/
'data.txt'
,
BUILD_PATH
/
'test_data.txt'
)
shutil
.
copyfile
(
TEST_PATH
.
parent
/
'src'
/
'test.html'
,
BUILD_PATH
/
'test.html'
)
@
pytest
.
fixture
(
params
=
[
'firefox'
,
'chrome'
])
def
selenium_standalone
(
request
):
def
selenium_standalone
(
request
,
setup_resources
):
if
request
.
param
==
'firefox'
:
cls
=
FirefoxWrapper
elif
request
.
param
==
'chrome'
:
...
...
@@ -123,7 +136,7 @@ if pytest is not None:
selenium
.
driver
.
quit
()
@
pytest
.
fixture
(
params
=
[
'firefox'
,
'chrome'
],
scope
=
'module'
)
def
_selenium_cached
(
request
):
def
_selenium_cached
(
request
,
setup_resources
):
# Cached selenium instance. This is a copy-paste of
# selenium_standalone to avoid fixture scope issues
if
request
.
param
==
'firefox'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment