abdullah090809 commited on
Commit
14bae4c
·
1 Parent(s): 751c10b

updated CI/CD pipeline added pytest

Browse files
Files changed (1) hide show
  1. .github/workflows/ci-cd.yml +4 -1
.github/workflows/ci-cd.yml CHANGED
@@ -47,8 +47,11 @@ jobs:
47
  - name: Install dependencies
48
  run: pip install -r requirements.txt
49
 
 
 
 
50
  - name: Run tests
51
- run: pytest --disable-warnings -v
52
 
53
  deploy:
54
  runs-on: ubuntu-latest
 
47
  - name: Install dependencies
48
  run: pip install -r requirements.txt
49
 
50
+ - name: Install pytest
51
+ run: pip install pytest pytest-asyncio httpx
52
+
53
  - name: Run tests
54
+ run: python -m pytest --disable-warnings -v
55
 
56
  deploy:
57
  runs-on: ubuntu-latest