diff options
Diffstat (limited to '')
-rw-r--r-- | docs/topics/02-development.md.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/docs/topics/02-development.md.html b/docs/topics/02-development.md.html new file mode 100644 index 0000000..e911eed --- /dev/null +++ b/docs/topics/02-development.md.html | |||
@@ -0,0 +1,91 @@ | |||
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | ||
2 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
3 | <html> | ||
4 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
5 | <head> | ||
6 | <title>Lua-System docs</title> | ||
7 | <link rel="stylesheet" href="../ldoc.css" type="text/css" /> | ||
8 | </head> | ||
9 | <body> | ||
10 | |||
11 | <div id="container"> | ||
12 | |||
13 | <div id="product"> | ||
14 | <div id="product_logo"></div> | ||
15 | <div id="product_name"><big><b></b></big></div> | ||
16 | <div id="product_description"></div> | ||
17 | </div> <!-- id="product" --> | ||
18 | |||
19 | |||
20 | <div id="main"> | ||
21 | |||
22 | |||
23 | <!-- Menu --> | ||
24 | |||
25 | <div id="navigation"> | ||
26 | <br/> | ||
27 | <h1>Lua-System</h1> | ||
28 | |||
29 | |||
30 | <ul> | ||
31 | <li><a href="../index.html">Index</a></li> | ||
32 | </ul> | ||
33 | |||
34 | |||
35 | |||
36 | <h2>Topics</h2> | ||
37 | <ul class=""> | ||
38 | <li><a href="../topics/01-introduction.md.html">1. Introduction</a></li> | ||
39 | <li><strong>2. Development</strong></li> | ||
40 | <li><a href="../topics/03-terminal.md.html">3. Terminal functionality</a></li> | ||
41 | <li><a href="../topics/CHANGELOG.md.html">CHANGELOG</a></li> | ||
42 | <li><a href="../topics/LICENSE.md.html">MIT License</a></li> | ||
43 | </ul> | ||
44 | <h2>Modules</h2> | ||
45 | <ul class="nowrap"> | ||
46 | <li><a href="../modules/system.html">system</a></li> | ||
47 | </ul> | ||
48 | <h2>Classes</h2> | ||
49 | <ul class="nowrap"> | ||
50 | <li><a href="../classes/bitflags.html">bitflags</a></li> | ||
51 | </ul> | ||
52 | <h2>Examples</h2> | ||
53 | <ul class="nowrap"> | ||
54 | <li><a href="../examples/compat.lua.html">compat.lua</a></li> | ||
55 | <li><a href="../examples/flag_debugging.lua.html">flag_debugging.lua</a></li> | ||
56 | <li><a href="../examples/password_input.lua.html">password_input.lua</a></li> | ||
57 | <li><a href="../examples/read.lua.html">read.lua</a></li> | ||
58 | <li><a href="../examples/readline.lua.html">readline.lua</a></li> | ||
59 | <li><a href="../examples/spinner.lua.html">spinner.lua</a></li> | ||
60 | <li><a href="../examples/spiral_snake.lua.html">spiral_snake.lua</a></li> | ||
61 | <li><a href="../examples/terminalsize.lua.html">terminalsize.lua</a></li> | ||
62 | </ul> | ||
63 | |||
64 | </div> | ||
65 | |||
66 | <div id="content"> | ||
67 | |||
68 | |||
69 | <h1>2. Development</h1> | ||
70 | |||
71 | <p>Some tests cannot be run in CI becasue they test system specifics that | ||
72 | simply do not exist in a CI environment. An example is the <code>isatty</code> function | ||
73 | Which cannot be set to return a truthy value in CI.</p> | ||
74 | |||
75 | <p>The tests concerned are all labelled with <code>#manual</code>. And in CI they will | ||
76 | be skipped because <code>--exclude-tags=manual</code> is being passed to the | ||
77 | <code>busted</code> command line.</p> | ||
78 | |||
79 | <p>Hence if tests like this are being added, then please ensure the tests | ||
80 | pass locally, and do not rely on CI only.</p> | ||
81 | |||
82 | |||
83 | </div> <!-- id="content" --> | ||
84 | </div> <!-- id="main" --> | ||
85 | <div id="about"> | ||
86 | <i>generated by <a href="http://github.com/lunarmodules/LDoc">LDoc 1.5.0</a></i> | ||
87 | <i style="float:right;">Last updated 2024-06-20 23:11:37 </i> | ||
88 | </div> <!-- id="about" --> | ||
89 | </div> <!-- id="container" --> | ||
90 | </body> | ||
91 | </html> | ||