Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
c2a519ba
Commit
c2a519ba
authored
9 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
tests: Skip async tests for native emitter.
parent
7f7e2475
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/run-tests
+1
-0
1 addition, 0 deletions
tests/run-tests
with
1 addition
and
0 deletions
tests/run-tests
+
1
−
0
View file @
c2a519ba
...
...
@@ -243,6 +243,7 @@ def run_tests(pyb, tests, args):
if
args
.
emit
==
'
native
'
:
skip_tests
.
update
({
'
basics/%s.py
'
%
t
for
t
in
'
gen_yield_from gen_yield_from_close gen_yield_from_ducktype gen_yield_from_exc gen_yield_from_iter gen_yield_from_send gen_yield_from_throw generator1 generator2 generator_args generator_close generator_closure generator_exc generator_return generator_send
'
.
split
()})
# require yield
skip_tests
.
update
({
'
basics/%s.py
'
%
t
for
t
in
'
bytes_gen class_store_class globals_del string_join
'
.
split
()})
# require yield
skip_tests
.
update
({
'
basics/async_%s.py
'
%
t
for
t
in
'
await await2 for for2 with with2
'
.
split
()})
# require yield
skip_tests
.
update
({
'
basics/%s.py
'
%
t
for
t
in
'
try_reraise try_reraise2
'
.
split
()})
# require raise_varargs
skip_tests
.
update
({
'
basics/%s.py
'
%
t
for
t
in
'
with_break with_continue with_return
'
.
split
()})
# require complete with support
skip_tests
.
add
(
'
basics/array_construct2.py
'
)
# requires generators
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment