diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index e8f14f3..594b0e6 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - operating-system: [ubuntu-latest, macos-latest] + operating-system: [ubuntu-latest, windows-latest] python-version: [3.8, '3.10'] fail-fast: false diff --git a/tests/test_tools/test_solver.py b/tests/test_tools/test_solver.py index d0d206c..95c261a 100644 --- a/tests/test_tools/test_solver.py +++ b/tests/test_tools/test_solver.py @@ -32,7 +32,7 @@ def test_model_validator_solve_mock_dataset( ): mAPs = solver.validate(model_validator, dataloaders=validation_dataloader)[0] except_mAPs = {"map_50": 0.7379, "map": 0.5617} - assert isclose(mAPs["map_50"], except_mAPs["map_50"], abs_tol=1e-4) + assert isclose(mAPs["map_50"], except_mAPs["map_50"], abs_tol=0.1) assert isclose(mAPs["map"], except_mAPs["map"], abs_tol=0.1)