Skip to content

Commit

Permalink
test increasing timeout in environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lrdossan committed Feb 20, 2024
1 parent 0abbd75 commit 64221c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion caimira/tests/apps/calculator/test_webapp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from pathlib import Path
import os

import pytest
import tornado.testing
Expand All @@ -7,7 +8,7 @@
import caimira.apps.calculator
from caimira.apps.calculator.report_generator import generate_permalink

_TIMEOUT = 20.
_TIMEOUT = int(os.environ.get('TIMEOUT_S', '20')) # seconds


@pytest.fixture
Expand Down

0 comments on commit 64221c9

Please sign in to comment.