Jake Holland
Jake Holland
Same for me, however this seems to fix it: ```yml jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install modules run: yarn - name: Run tests run: yarn...
@ppamorim have you tried changing `run: npm run test:cov` to `run: yarn jest --json --outputFile="jest.results.json"`
Finally got the build working, had to add numerous new tests and update a few packages as their dependencies were failing the builds
Example test to show failure ```python @pytest.mark.asyncio async def test(): app = FastAPI() @app.websocket("/ws") async def ws(websocket: WebSocket): await websocket.close() # Reject the connection async with TestClient(app) as client: async...
Note that since celery-ts uses celery-node internally, it is also affected by this
Have now updated the type definitions to indicate the new options, also took the liberty to include some of the missed options