File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,23 @@ Define the test suite for bless to run by making a list of tasks and
10
10
arguments in your ` mix.exs ` file. Add a ` :test_suite ` key to the ` project/0 `
11
11
function like so:
12
12
13
- def project do
14
- [
15
- preferred_cli_env: [
16
- bless: :test
17
- ],
18
- ..
19
- test_suite: [
20
- compile: ["--warnings-as-errors", "--force"],
21
- "coveralls.html": [],
22
- format: ["--check-formatted"],
23
- credo: []
24
- ],
25
- ..
26
- ]
27
- end
13
+ ``` elixir
14
+ def project do
15
+ [
16
+ preferred_cli_env: [
17
+ bless: :test
18
+ ],
19
+ ..
20
+ test_suite: [
21
+ compile: [" --warnings-as-errors" , " --force" ],
22
+ " coveralls.html" : [],
23
+ format: [" --check-formatted" ],
24
+ credo: []
25
+ ],
26
+ ..
27
+ ]
28
+ end
29
+ ```
28
30
29
31
Then running ` mix bless ` will run each of those tasks.
30
32
You can’t perform that action at this time.
0 commit comments