Skip to content

Commit 8604084

Browse files
committed
update copilot-instruction
1 parent f939598 commit 8604084

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/copilot-instruction.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,3 +227,26 @@ git branch
227227

228228
Expected output: `* main`
229229

230+
---
231+
232+
## Part 3: Validation
233+
234+
### Step 12 — Run a package smoke test
235+
236+
Run a one-line Python check to confirm `httpx` and `python-dotenv` are installed and import correctly.
237+
238+
- **Windows (PowerShell/CMD):**
239+
```powershell
240+
.\.venv\Scripts\python.exe -c "import httpx, dotenv, importlib.metadata as m; print('httpx', httpx.__version__); print('python-dotenv', m.version('python-dotenv')); print('dotenv module path', dotenv.__file__)"
241+
```
242+
- **macOS / Linux:**
243+
```bash
244+
.venv/bin/python -c "import httpx, dotenv, importlib.metadata as m; print('httpx', httpx.__version__); print('python-dotenv', m.version('python-dotenv')); print('dotenv module path', dotenv.__file__)"
245+
```
246+
247+
If successful, output should include:
248+
249+
- `httpx` followed by a version number
250+
- `python-dotenv` followed by a version number
251+
- `dotenv module path` pointing to the virtual environment site-packages directory
252+

0 commit comments

Comments
 (0)