Send real-time notifications to Slack with the results of your tests
Project description
RobotSlackNotification
🇧🇷 Descrição
RobotSlackNotification é uma biblioteca para o Robot Framework que envia notificações em tempo real para um canal do Slack com o status e os resultados dos testes automatizados. Ideal para execuções integradas com pipelines de CI/CD, como GitHub Actions, GitLab CI, Jenkins, entre outros.
Principais Funcionalidades
- Envia mensagem principal com resumo dos testes (executados, sucesso, falha, pulados)
- Atualiza a mensagem principal conforme a execução avança
- Envia detalhes de falhas em threads da mensagem principal
- Permite menção automática a grupos do Slack (User Groups) configurados por suite
⚙️ Configuração do Projeto
1. Instale a biblioteca
Use o Poetry ou pip:
poetry add robotframework-slacknotification
# ou
pip install robotframework-slacknotification
2. Configure o arquivo .env
Crie um arquivo .env na raiz do projeto o API TOKEN do Slack e o ID do seu Canal:
SLACK_API_TOKEN=xoxb-seu-token-do-slack
SLACK_CHANNEL=ID_DO_CANAL
- O token deve ser do tipo "Bot User OAuth Token" e ter os escopos:
chat:writechat:write.publicusergroups:read(para menções automáticas a grupos)
3. (Opcional) Configure os grupos de menção por suite
Crie um arquivo chamado robot_slack_config.py na raiz do seu projeto de testes, conforme o exemplo abaixo:
from dotenv import load_dotenv
import os
load_dotenv()
# Configurações obrigatórias do Slack
SLACK_API_TOKEN = os.getenv('SLACK_API_TOKEN', "")
SLACK_CHANNEL = os.getenv('SLACK_CHANNEL', "")
# Configurações opcionais de grupos por suite
SUITE_SLACK_GROUPS = {
"Test Slack": ["grupo_dev", "grupo_test"],
}
# Configuração opcional para logs de debug
DEBUG_LOGS = True # Ativa logs detalhados para debug
- O nome da suite deve ser igual ao exibido no log do Robot Framework
- Os nomes dos grupos devem ser os "handles" dos User Groups do Slack (sem o
@) - O arquivo é obrigatório para a biblioteca funcionar
DEBUG_LOGS(opcional): QuandoTrue, exibe logs detalhados no console para facilitar o debug da biblioteca
4. (Opcional) Suporte a múltiplos idiomas
A biblioteca suporta mensagens em três idiomas:
- Inglês (padrão) = en
- Português-BR = pt-br
- Espanhol = es
Basta passar o argumento language ao importar a biblioteca no seu teste Robot:
Library RobotSlackNotification
... language=pt-br
ou
Library RobotSlackNotification
... language=es
Se não informar, o padrão será inglês (en).
Todos os textos das mensagens, labels e alertas serão enviados no idioma escolhido.
5. Adicione a biblioteca no seu teste Robot
Exemplo completo de uso:
Library RobotSlackNotification
... test_title=Seu Título de Teste
... environment=HML
... cicd_url=https://github.com/sua-org/seu-repo/actions/runs/123456789
... language=pt-br
test_title(opcional): Título do teste. Se não informado, usa o nome da suite por padrão.environment(opcional): Ambiente de execução. Se não informado, não aparece na mensagem.cicd_url(opcional): URL completa do pipeline.language(opcional): Idioma das mensagens. Padrão é inglês (en).
🛠️ Configuração no Slack
-
Crie um app no Slack:
- https://api.slack.com/apps → "Create New App" → "From scratch"
- Adicione os escopos:
chat:write,chat:write.public,usergroups:read - Instale o app no workspace e copie o token do bot (
xoxb-...)
-
Crie User Groups (Grupos de Usuários):
- Acesse https://app.slack.com/user-groups
- Crie grupos como
@grupo_dev,@grupo_qa, etc. - O handle do grupo (ex:
grupo_dev) é o que você usará no arquivo de configuração.
-
Adicione o bot ao canal desejado.
🚨 Como funcionam as menções automáticas
- No final da execução de cada suite, se houver falhas e grupos configurados para aquela suite, será enviada uma mensagem na thread da mensagem principal, marcando os grupos.
- Exemplo de mensagem automática:
@grupo_dev @grupo_qa podem verificar?
🇺🇸 English
RobotSlackNotification is a Robot Framework library that sends real-time notifications to a Slack channel with the status and results of your automated tests. Perfect for executions integrated with CI/CD pipelines like GitHub Actions, GitLab CI, Jenkins, and others.
Main Features
- Sends a main message with a summary of test results (executed, passed, failed, skipped)
- Updates the main message as execution progresses
- Sends failure details in threads under the main message
- Allows automatic mention of Slack User Groups per suite
⚙️ Project Setup
1. Install the library
Use Poetry or pip:
poetry add robotframework-slacknotification
# or
pip install robotframework-slacknotification
2. Configure the .env file
Create a .env file in the project root with your Slack API Token and Channel ID:
SLACK_API_TOKEN=xoxb-your-slack-token
SLACK_CHANNEL=YOUR_CHANNEL_ID
- The token must be a "Bot User OAuth Token" with scopes:
chat:writechat:write.publicusergroups:read(for automatic group mentions)
3. (Optional) Configure group mentions per suite
Create a file named robot_slack_config.py in your test project root, as shown below:
from dotenv import load_dotenv
import os
load_dotenv()
# Required Slack configurations
SLACK_API_TOKEN = os.getenv('SLACK_API_TOKEN', "")
SLACK_CHANNEL = os.getenv('SLACK_CHANNEL', "")
# Optional suite group configurations
SUITE_SLACK_GROUPS = {
"Suite Name 1": ["grupo_dev", "grupo_qa"],
"Suite Name 2": ["grupo_ops"],
}
# Optional debug logs configuration
DEBUG_LOGS = True # Enables detailed debug logs
- The suite name must match exactly what is shown in the Robot Framework log
- Group names must be the User Group handles from Slack (without
@) - The file is required for the library to work
DEBUG_LOGS(optional): WhenTrue, displays detailed logs in the console to help debug the library
4. (Optional) Multi-language support
The library supports messages in three languages:
- English (default) = en
- Portuguese-BR = pt-br
- Spanish = es
Just pass the language argument when importing the library in your Robot test:
Library RobotSlackNotification
... language=pt-br
or
Library RobotSlackNotification
... language=es
If not specified, the default is English (en).
All message texts, labels, and alerts will be sent in the selected language.
5. Add the library to your Robot test
Full usage example:
Library RobotSlackNotification
... test_title=Your Test Title
... environment=HML
... cicd_url=https://github.com/your-org/your-repo/actions/runs/123456789
... language=en
test_title(optional): Test title. If not provided, the suite name will be used by default.environment(optional): Execution environment. If not provided, it will not appear in the message.cicd_url(optional): Full pipeline run URL.language(optional): Message language. Default is English (en).
🛠️ Slack Setup
-
Create a Slack app:
- https://api.slack.com/apps → "Create New App" → "From scratch"
- Add scopes:
chat:write,chat:write.public,usergroups:read - Install the app in your workspace and copy the bot token (
xoxb-...)
-
Create User Groups:
- Go to https://app.slack.com/user-groups
- Create groups like
@grupo_dev,@grupo_qa, etc. - The group handle (e.g.,
grupo_dev) is what you use in the config file.
-
Add the bot to the desired channel.
🚨 How automatic mentions work
- At the end of each suite, if there are failures and groups configured for that suite, a message will be sent in the thread of the main message, mentioning the groups.
- Example of automatic message:
@grupo_dev @grupo_qa can check?
Licença / License
Este projeto está licenciado sob a licença Apache 2.0.
This project is licensed under the Apache 2.0 license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file robotframework_slacknotification-0.1.7.tar.gz.
File metadata
- Download URL: robotframework_slacknotification-0.1.7.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.9.22 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40323421ad8b0afff4f42a788b1ba9eb8167104ce79c8dd4e6244eb99cd70034
|
|
| MD5 |
0c8b3f349d9fb7d3abca6b4ad1fa0ec3
|
|
| BLAKE2b-256 |
2eafd195cd63e6c2afed56375966c627b5414f41d3a6cff3b1a68f5516a64c2c
|
File details
Details for the file robotframework_slacknotification-0.1.7-py3-none-any.whl.
File metadata
- Download URL: robotframework_slacknotification-0.1.7-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.9.22 Linux/6.11.0-1015-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b137eb588d298e1f07192d28435cf6823c7fd6f87894451ef9013b102102c1b
|
|
| MD5 |
a884525380ad06103d257b1465f58cf7
|
|
| BLAKE2b-256 |
bf72c41eed5305282ce263b4835e1d1401bdb5ad9599bd6e4aac0a3cb03b6849
|