Skip to content

Commit c917d69

Browse files
committed
Moved tests to dedicated directory for CI pipeline
1 parent eb5d367 commit c917d69

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pip install -r requirements.txt
6666
Execute the unit test suite to verify system integrity:
6767

6868
```bash
69-
python test_core.py
69+
python -m unittest discover -s tests -p "test_*.py"
7070
```
7171

7272
## Usage
@@ -200,7 +200,7 @@ The project includes automated testing via GitHub Actions. The CI pipeline perfo
200200
Test execution:
201201

202202
```bash
203-
python -m unittest discover -s . -p "test_*.py"
203+
python -m unittest discover -s tests -p "test_*.py"
204204
```
205205

206206
## Technical Highlights
@@ -230,13 +230,15 @@ Statistical confidence intervals enable risk assessment in network slicing decis
230230
│ ├── data_loader.py # Data generation and preprocessing
231231
│ ├── lstm_model.py # LSTM architecture definition
232232
│ └── trainer.py # Training and evaluation logic
233+
├── tests/
234+
│ ├── __init__.py
235+
│ └── test_core.py # Unit test suite
233236
├── models/ # Model artifacts (generated)
234237
├── reports/ # Visualizations (generated)
235238
├── notebooks/
236239
│ └── research_analysis.ipynb
237240
├── main.py # Training pipeline entry point
238241
├── dashboard.py # Streamlit dashboard
239-
├── test_core.py # Unit test suite
240242
├── requirements.txt # Python dependencies
241243
├── Dockerfile # Container configuration
242244
└── README.md # This file

0 commit comments

Comments
 (0)