We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b5898 commit 3f0813eCopy full SHA for 3f0813e
README.md
@@ -137,13 +137,20 @@ bin/elixirc lib/elixir/lib/string.ex -o lib/elixir/ebin
137
bin/elixir lib/elixir/test/elixir/string_test.exs
138
```
139
140
+Some test files need their `test_helper.exs` to be explicitly required
141
+before, such as:
142
+
143
+```sh
144
+bin/elixir -r lib/logger/test/test_helper.exs lib/logger/test/logger_test.exs
145
+```
146
147
You can also use the `LINE` env var to run a single test:
148
149
```sh
150
LINE=123 bin/elixir lib/elixir/test/elixir/string_test.exs
151
````
152
-To recompile (including Erlang modules):
153
+To recompile all (including Erlang modules):
154
155
156
make compile
0 commit comments