https://github.com/nfibrokerage/bless
A mix task for running test suites
https://github.com/nfibrokerage/bless
library
Last synced: 6 months ago
JSON representation
A mix task for running test suites
- Host: GitHub
- URL: https://github.com/nfibrokerage/bless
- Owner: NFIBrokerage
- License: apache-2.0
- Created: 2020-07-31T19:02:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-15T21:07:06.000Z (about 1 year ago)
- Last Synced: 2024-10-29T08:40:45.588Z (6 months ago)
- Topics: library
- Language: Elixir
- Size: 43 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Bless

A mix task for running test suites
## Usage
Define the test suite for bless to run by making a list of tasks and
arguments in your `mix.exs` file. Add a `:bless_suite` key to the `project/0`
function like so:```elixir
def project do
[
preferred_cli_env: [
bless: :test
],
..
bless_suite: [
compile: ["--warnings-as-errors", "--force"],
"chaps.html": ["--raise"],
format: ["--check-formatted"],
credo: [],
"deps.unlock": ["--check-unused"]
],
..
]
end
```Then running `mix bless` will run each of those tasks.
## Installation
```elixir
def deps do
[
{:bless, "~> 1.0"}
]
end
```