From e06fe15143be09d65889d4f1d12c954f74193ebc Mon Sep 17 00:00:00 2001 From: Vitaly Puzrin Date: Wed, 27 Mar 2024 20:12:49 +0200 Subject: [PATCH] /test => /dev - Preserve /test for standard unit testing --- .github/workflows/pio-builds.yaml | 6 +++--- {test => dev}/ListCapabilities/.gitignore | 0 {test => dev}/ListCapabilities/.vscode/extensions.json | 0 {test => dev}/ListCapabilities/platformio.ini | 0 {test => dev}/ListCapabilities/src/main.cpp | 0 {test => dev}/ProtocolAnalyzer/.gitignore | 0 {test => dev}/ProtocolAnalyzer/.vscode/extensions.json | 0 {test => dev}/ProtocolAnalyzer/platformio.ini | 0 {test => dev}/ProtocolAnalyzer/src/main.cpp | 0 {test => dev}/VoltageChange/.gitignore | 0 {test => dev}/VoltageChange/.vscode/extensions.json | 0 {test => dev}/VoltageChange/platformio.ini | 0 {test => dev}/VoltageChange/src/main.cpp | 0 13 files changed, 3 insertions(+), 3 deletions(-) rename {test => dev}/ListCapabilities/.gitignore (100%) rename {test => dev}/ListCapabilities/.vscode/extensions.json (100%) rename {test => dev}/ListCapabilities/platformio.ini (100%) rename {test => dev}/ListCapabilities/src/main.cpp (100%) rename {test => dev}/ProtocolAnalyzer/.gitignore (100%) rename {test => dev}/ProtocolAnalyzer/.vscode/extensions.json (100%) rename {test => dev}/ProtocolAnalyzer/platformio.ini (100%) rename {test => dev}/ProtocolAnalyzer/src/main.cpp (100%) rename {test => dev}/VoltageChange/.gitignore (100%) rename {test => dev}/VoltageChange/.vscode/extensions.json (100%) rename {test => dev}/VoltageChange/platformio.ini (100%) rename {test => dev}/VoltageChange/src/main.cpp (100%) diff --git a/.github/workflows/pio-builds.yaml b/.github/workflows/pio-builds.yaml index e370647..346338a 100644 --- a/.github/workflows/pio-builds.yaml +++ b/.github/workflows/pio-builds.yaml @@ -22,12 +22,12 @@ jobs: - name: Build ProtocolAnalyzer run: pio run - working-directory: ./test/ProtocolAnalyzer + working-directory: ./dev/ProtocolAnalyzer - name: Build ListCapabilities run: pio run - working-directory: ./test/ListCapabilities + working-directory: ./dev/ListCapabilities - name: Build VoltageChange run: pio run - working-directory: ./test/VoltageChange + working-directory: ./dev/VoltageChange diff --git a/test/ListCapabilities/.gitignore b/dev/ListCapabilities/.gitignore similarity index 100% rename from test/ListCapabilities/.gitignore rename to dev/ListCapabilities/.gitignore diff --git a/test/ListCapabilities/.vscode/extensions.json b/dev/ListCapabilities/.vscode/extensions.json similarity index 100% rename from test/ListCapabilities/.vscode/extensions.json rename to dev/ListCapabilities/.vscode/extensions.json diff --git a/test/ListCapabilities/platformio.ini b/dev/ListCapabilities/platformio.ini similarity index 100% rename from test/ListCapabilities/platformio.ini rename to dev/ListCapabilities/platformio.ini diff --git a/test/ListCapabilities/src/main.cpp b/dev/ListCapabilities/src/main.cpp similarity index 100% rename from test/ListCapabilities/src/main.cpp rename to dev/ListCapabilities/src/main.cpp diff --git a/test/ProtocolAnalyzer/.gitignore b/dev/ProtocolAnalyzer/.gitignore similarity index 100% rename from test/ProtocolAnalyzer/.gitignore rename to dev/ProtocolAnalyzer/.gitignore diff --git a/test/ProtocolAnalyzer/.vscode/extensions.json b/dev/ProtocolAnalyzer/.vscode/extensions.json similarity index 100% rename from test/ProtocolAnalyzer/.vscode/extensions.json rename to dev/ProtocolAnalyzer/.vscode/extensions.json diff --git a/test/ProtocolAnalyzer/platformio.ini b/dev/ProtocolAnalyzer/platformio.ini similarity index 100% rename from test/ProtocolAnalyzer/platformio.ini rename to dev/ProtocolAnalyzer/platformio.ini diff --git a/test/ProtocolAnalyzer/src/main.cpp b/dev/ProtocolAnalyzer/src/main.cpp similarity index 100% rename from test/ProtocolAnalyzer/src/main.cpp rename to dev/ProtocolAnalyzer/src/main.cpp diff --git a/test/VoltageChange/.gitignore b/dev/VoltageChange/.gitignore similarity index 100% rename from test/VoltageChange/.gitignore rename to dev/VoltageChange/.gitignore diff --git a/test/VoltageChange/.vscode/extensions.json b/dev/VoltageChange/.vscode/extensions.json similarity index 100% rename from test/VoltageChange/.vscode/extensions.json rename to dev/VoltageChange/.vscode/extensions.json diff --git a/test/VoltageChange/platformio.ini b/dev/VoltageChange/platformio.ini similarity index 100% rename from test/VoltageChange/platformio.ini rename to dev/VoltageChange/platformio.ini diff --git a/test/VoltageChange/src/main.cpp b/dev/VoltageChange/src/main.cpp similarity index 100% rename from test/VoltageChange/src/main.cpp rename to dev/VoltageChange/src/main.cpp