aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/extension.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/extension.lux9
1 files changed, 7 insertions, 2 deletions
diff --git a/stdlib/source/test/lux/extension.lux b/stdlib/source/test/lux/extension.lux
index 92b314dc7..a754e9bd2 100644
--- a/stdlib/source/test/lux/extension.lux
+++ b/stdlib/source/test/lux/extension.lux
@@ -150,6 +150,9 @@
@.js (generation.save! artifact_id {.#None}
(js.comment commentary
(js.statement (js.string commentary))))
+ @.python (generation.save! artifact_id {.#None}
+ (python.comment commentary
+ (python.statement (python.string commentary))))
@.lua (generation.save! artifact_id {.#None}
(lua.comment commentary
(lua.statement (lua.string commentary))))
@@ -159,8 +162,10 @@
(generation.log! commentary))))]
(in directive.no_requirements)))
- ... TODO: No longer skip testing Lua after Rembulan isn't being used anymore.
- (for [@.lua (as_is)]
+ (for [... TODO: No longer skip testing Lua after Rembulan isn't being used anymore.
+ @.lua (as_is)
+ ... TODO: No longer skip testing Python.
+ @.python (as_is)]
(`` ((~~ (static ..directive)) (n.* 2 3))))
))