This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
import funcoes.equacoes_estado_gases as eeg | |
case1 = ( | |
1.1832, | |
4.0968e-05, | |
2850016, | |
1e-05, | |
450, | |
10000, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set +o xtrace | |
PS4='${LINENO}: ' | |
# Provisiona o Keycloak | |
output_keycloak="$(docker run --name my-keycloak -p PORTA_HOST_KEYCLOAK:PORTA_CONTAINER_KEYCLOAK -e "kc_bootstrap_admin_username={insira seu nome de administrador aqui}" -e "KC_BOOTSTRAP_ADMIN_PASSWORD={insira sua senha aqui}" -d quay.io/keycloak/keycloak:26.1.4 start-dev --features authorization,organization 2>&1> /dev/null)" | |
if [ $? -ne 0 ]; then | |
output_keycloak="$(docker ps --all | grep -i -c my-keycloak)" | |
if [ $output_keycloak -eq 0 ]; then |
OlderNewer