ソースを参照

chore(backend-testing-01): create test directory structure

- tests/ root with __init__.py
- tests/unit/ for mocked unit tests (CI)
- tests/integration/ for hardware tests (local only)
- tests/fixtures/ for test data files
tuanchris 1 週間 前
コミット
784374d2df
4 ファイル変更3 行追加0 行削除
  1. 1 0
      tests/__init__.py
  2. 0 0
      tests/fixtures/.gitkeep
  3. 1 0
      tests/integration/__init__.py
  4. 1 0
      tests/unit/__init__.py

+ 1 - 0
tests/__init__.py

@@ -0,0 +1 @@
+# Dune Weaver Backend Tests

+ 0 - 0
tests/fixtures/.gitkeep


+ 1 - 0
tests/integration/__init__.py

@@ -0,0 +1 @@
+# Integration tests - hardware tests, local only

+ 1 - 0
tests/unit/__init__.py

@@ -0,0 +1 @@
+# Unit tests - mocked dependencies, runs in CI