ex_unit_notifier
ex_unit_notifier copied to clipboard
Desktop notifications for ExUnit
The gist of this feature request, have an option to only notify if test status changes. For instance if a test starts breaking, more tests break, or tests all pass...
Today I just installed 1. add dependency `{:ex_unit_notifier, "~> 0.1", only: :test}` 2. add to test_helper.exs `ExUnit.configure formatters: [ExUnit.CLIFormatter, ExUnitNotifier]` 3. add to config/test.exs `config :ex_unit_notifier, notifier: ExUnitNotifier.Notifiers.NotifySend` neither it's...
Terminal notifier has some options that could be useful when testing. I personally would like to have the notifier use the SOUND option. It would be nice to be able...
Hello! I've added a new notifier. This allows me to run a test watcher in one tmux pane (2), while editing code in another (3). The pane's background changes to...
Hello! I'd been looking around to see how I could easily pair `notify-send` and https://hexdocs.pm/desktop Your code inside `ExUnitNotifier.Notifiers` seemed like a really good basis for a cross-OS notifications pkg....
To perform a notification, TmuxNotifier manually alters the user's tmux configuration value "window-status-style" with a fixed value of red or green. This is not raising an alert of any kind,...
On Windows the following PowerShell script can be used for creating a tray notification: `Invoke-Notification.ps1` ```powershell [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") [void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") Function Invoke-Notification { [CmdletBinding()] Param ( [Parameter(HelpMessage="The message title")] [string]$Title="Attention...
List of changes: - add min and max Elixir/Erlang matrix - add more CI tasks - bump GitHub actions