Skip to content

Commit db54c91

Browse files
committed
Remove event_loop fixture from test conftest files & Updated README.md
1 parent 4f9a821 commit db54c91

5 files changed

Lines changed: 4 additions & 17 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A production-ready, real-time collaborative coding interview platform built with modern web technologies. Conduct technical interviews with live code execution, collaborative whiteboard, and synchronized timers.
44

5-
[![CI/CD Pipeline](https://github.com/YOUR_USERNAME/dev-interview-platform/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/YOUR_USERNAME/dev-interview-platform/actions)
5+
[![CI/CD Pipeline](https://github.com/owaisjunedi/dev-interview-platform/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/owaisjunedi/dev-interview-platform/actions)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
77

88
## 📋 Table of Contents
@@ -178,7 +178,7 @@ This method runs both frontend and backend concurrently from the root directory.
178178

179179
1. **Clone the repository**
180180
```bash
181-
git clone https://github.com/YOUR_USERNAME/dev-interview-platform.git
181+
git clone https://github.com/owaisjunedi/dev-interview-platform.git
182182
cd dev-interview-platform
183183
```
184184

@@ -754,7 +754,7 @@ docker-compose build --no-cache
754754
### Getting Help
755755

756756
1. Check [AGENT.md](AGENT.md) for detailed technical guide
757-
2. Review [GitHub Issues](https://github.com/YOUR_USERNAME/dev-interview-platform/issues)
757+
2. Review [GitHub Issues](https://github.com/owaisjunedi/dev-interview-platform/issues)
758758
3. Check server logs: `docker-compose logs -f`
759759
4. Enable verbose logging in backend
760760

@@ -801,7 +801,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
801801

802802
For questions or issues:
803803
- 📧 Email: support@devinterview.io
804-
- 💬 GitHub Issues: [Create an issue](https://github.com/YOUR_USERNAME/dev-interview-platform/issues)
804+
- 💬 GitHub Issues: [Create an issue](https://github.com/owaisjunedi/dev-interview-platform/issues)
805805
- 📖 Documentation: [AGENT.md](AGENT.md)
806806

807807
---
-330 Bytes
Binary file not shown.

server/tests/conftest.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ async def test_db():
3636
async with engine.begin() as conn:
3737
await conn.run_sync(Base.metadata.drop_all)
3838

39-
@pytest.fixture(scope="session")
40-
def event_loop():
41-
loop = asyncio.new_event_loop()
42-
yield loop
43-
loop.close()
4439

4540
# Override the dependency
4641
@pytest.fixture(autouse=True)
Binary file not shown.

server/tests_integration/conftest.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,6 @@ async def test_db():
3636
async with engine.begin() as conn:
3737
await conn.run_sync(Base.metadata.drop_all)
3838

39-
@pytest.fixture(scope="session")
40-
def event_loop():
41-
try:
42-
loop = asyncio.get_running_loop()
43-
except RuntimeError:
44-
loop = asyncio.new_event_loop()
45-
yield loop
46-
loop.close()
4739

4840
# Override the dependency
4941
@pytest_asyncio.fixture(autouse=True)

0 commit comments

Comments
 (0)