Skip to content

Commit 2f18fec

Browse files
committed
testing error
1 parent 7587946 commit 2f18fec

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/CI-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ jobs:
3838
3939
- name: Run Tests
4040
run: |
41-
pytest --timeout=120 --timeout_method=thread --cov=runpod --cov-report=xml --cov-report=term-missing --cov-fail-under=100 -W error -p no:unraisableexception
41+
pytest --timeout=120 --timeout_method=thread --cov=runpod --cov-report=xml --cov-report=term-missing --cov-fail-under=100 -W error
42+
# -p no:unraisableexception

tests/test_serverless/test_modules/test_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async def test_send_result_type_error(self):
108108
mock_dumps.side_effect = TypeError("Forced exception")
109109

110110
mock_jobs.return_value = set(['test_id'])
111-
send_return_local = await rp_http.send_result("No Session Required", self.job_data, self.job)
111+
send_return_local = await rp_http.send_result("No Session", self.job_data, self.job)
112112

113113
assert send_return_local is None
114114
assert mock_log.debug.call_count == 0

0 commit comments

Comments
 (0)