summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorRoberto Bertó <463349+robertoberto@users.noreply.github.com>2026-05-19 03:15:55 -0300
committerGitHub <noreply@github.com>2026-05-19 03:15:55 -0300
commit294d060ac1557ed70cab7a12f97d930f9dc4baf9 (patch)
tree25e03a160fb1dc05a27a9118a7a6f573f0ffd123 /run_tests.sh
parentffd5ba16eb1ada42a582db4ac8bdaf29f66a868f (diff)
parent6071528289e4a8b11a772433c33851136d30f133 (diff)
downloadpyvyos-294d060ac1557ed70cab7a12f97d930f9dc4baf9.tar.gz
pyvyos-294d060ac1557ed70cab7a12f97d930f9dc4baf9.zip
Merge pull request #31 from vyos-contrib/release/v0.4.0-cleanupv0.4.0
Release v0.4.0 — cleanup and consolidation
Diffstat (limited to 'run_tests.sh')
-rw-r--r--run_tests.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/run_tests.sh b/run_tests.sh
deleted file mode 100644
index c07a684..0000000
--- a/run_tests.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-set -e
-
-echo "=== PyVyOS Test Suite ==="
-echo ""
-
-echo "1. Sincronizando dependências..."
-uv sync
-
-echo ""
-echo "2. Verificação rápida de imports..."
-uv run python test_quick.py
-
-echo ""
-echo "3. Executando testes de shims..."
-uv run pytest tests/test_shims.py -v
-
-echo ""
-echo "4. Executando testes de utils..."
-uv run pytest tests/utils/ -v
-
-echo ""
-echo "5. Executando testes de exceptions..."
-uv run pytest tests/test_exceptions.py -v
-
-echo ""
-echo "6. Executando teste de compatibilidade..."
-uv run pytest tests/modules/test_vy_device.py::test_shim_compatibility -v
-
-echo ""
-echo "7. Executando TODOS os testes..."
-uv run pytest tests/ -v --tb=short
-
-echo ""
-echo "✅ Todos os testes concluídos!"
-