Skip to content

Commit d7084f7

Browse files
shubhalguptapre-commit-ci[bot]WebReflection
authored
Fix: Restored the development docs pyscript#1783 (pyscript#1803)
* Fix: Restored the development docs pyscript#1783 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Andrea Giammarchi <andrea.giammarchi@gmail.com>
1 parent a87d2b3 commit d7084f7

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

CONTRIBUTING.md

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,103 @@ The Project abides by the Organization's [trademark policy](https://github.com/p
7979

8080
Part of MVG-0.1-beta.
8181
Made with love by GitHub. Licensed under the [CC-BY 4.0 License](https://creativecommons.org/licenses/by-sa/4.0/).
82+
83+
# Quick guide to pytest
84+
85+
We make heavy usage of pytest. Here is a quick guide and collection of useful options:
86+
87+
- To run all tests in the current directory and subdirectories: pytest
88+
89+
- To run tests in a specific directory or file: pytest path/to/dir/test_foo.py
90+
91+
- -s: disables output capturing
92+
93+
- --pdb: in case of exception, enter a (Pdb) prompt so that you can inspect what went wrong.
94+
95+
- -v: verbose mode
96+
97+
- -x: stop the execution as soon as one test fails
98+
99+
- -k foo: run only the tests whose full name contains foo
100+
101+
- -k 'foo and bar'
102+
103+
- -k 'foo and not bar'
104+
105+
## Running integration tests under pytest
106+
107+
make test is useful to run all the tests, but during the development is useful to have more control on how tests are run. The following guide assumes that you are in the directory pyscriptjs/tests/integration/.
108+
109+
### To run all the integration tests, single or multi core
110+
111+
$ pytest -xv
112+
...
113+
114+
test_00_support.py::TestSupport::test_basic[chromium] PASSED [ 0%]
115+
test_00_support.py::TestSupport::test_console[chromium] PASSED [ 1%]
116+
test_00_support.py::TestSupport::test_check_js_errors_simple[chromium] PASSED [ 2%]
117+
test_00_support.py::TestSupport::test_check_js_errors_expected[chromium] PASSED [ 3%]
118+
test_00_support.py::TestSupport::test_check_js_errors_expected_but_didnt_raise[chromium] PASSED [ 4%]
119+
test_00_support.py::TestSupport::test_check_js_errors_multiple[chromium] PASSED [ 5%]
120+
...
121+
122+
-x means "stop at the first failure". -v means "verbose", so that you can see all the test names one by one. We try to keep tests in a reasonable order, from most basic to most complex. This way, if you introduced some bug in very basic things, you will notice immediately.
123+
124+
If you have the pytest-xdist plugin installed, you can run all the integration tests on 4 cores in parallel:
125+
126+
$ pytest -n 4
127+
128+
### To run a single test, headless
129+
130+
$ pytest test_01_basic.py -k test_pyscript_hello -s
131+
...
132+
[ 0.00 page.goto ] pyscript_hello.html
133+
[ 0.01 request ] 200 - fake_server - http://fake_server/pyscript_hello.html
134+
...
135+
[ 0.17 console.info ] [py-loader] Downloading pyodide-x.y.z...
136+
[ 0.18 request ] 200 - CACHED - https://cdn.jsdelivr.net/pyodide/vx.y.z/full/pyodide.js
137+
...
138+
[ 3.59 console.info ] [pyscript/main] PyScript page fully initialized
139+
[ 3.60 console.log ] hello pyscript
140+
141+
-k selects tests by pattern matching as described above. -s instructs pytest to show the output to the terminal instead of capturing it. In the output you can see various useful things, including network requests and JS console messages.
142+
143+
### To run a single test, headed
144+
145+
$ pytest test_01_basic.py -k test_pyscript_hello -s --headed
146+
...
147+
148+
Same as above, but with --headed the browser is shown in a window, and you can interact with it. The browser uses a fake server, which means that HTTP requests are cached.
149+
150+
Unfortunately, in this mode source maps does not seem to work, and you cannot debug the original typescript source code. This seems to be a bug in playwright, for which we have a workaround:
151+
152+
$ pytest test_01_basic.py -k test_pyscript_hello -s --headed --no-fake-server
153+
...
154+
155+
As the name implies, -no-fake-server disables the fake server: HTTP requests are not cached, but source-level debugging works.
156+
157+
Finally:
158+
159+
$ pytest test_01_basic.py -k test_pyscript_hello -s --dev
160+
...
161+
162+
--dev implies --headed --no-fake-server. In addition, it also automatically open chrome dev tools.
163+
164+
### To run only main thread or worker tests
165+
166+
By default, we run each test twice: one with execution_thread = "main" and one with execution_thread = "worker". If you want to run only half of them, you can use -m:
167+
168+
$ pytest -m main # run only the tests in the main thread
169+
$ pytest -m worker # ron only the tests in the web worker
170+
171+
## Fake server, HTTP cache
172+
173+
By default, our test machinery uses a playwright router which intercepts and cache HTTP requests, so that for example you don't have to download pyodide again and again. This also enables the possibility of running tests in parallel on multiple cores.
174+
175+
The cache is stored using the pytest-cache plugin, which means that it survives across sessions.
176+
177+
If you want to temporarily disable the cache, the easiest thing is to use --no-fake-server, which bypasses it completely.
178+
179+
If you want to clear the cache, you can use the special option --clear-http-cache:
180+
181+
NOTE: this works only if you are inside tests/integration, or if you explicitly specify tests/integration from the command line. This is due to how pytest decides to search for and load the various conftest.py.

0 commit comments

Comments
 (0)