소스 검색

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