From a39cd64bf33d974b5180ee4660e4b04ec815456d Mon Sep 17 00:00:00 2001 From: tlpss Date: Wed, 25 Oct 2023 14:08:33 +0200 Subject: [PATCH] undo skip for gh actions --- test/test_detector.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_detector.py b/test/test_detector.py index 8512b0d..b9b722f 100644 --- a/test/test_detector.py +++ b/test/test_detector.py @@ -1,7 +1,6 @@ import os import unittest -import pytest import torch from pytorch_lightning.loggers import WandbLogger from torch import nn @@ -104,7 +103,7 @@ def test_model_init_heatmaps(self): # TODO: chcek if we can run it on gh actions as well. IN_GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS") == "true" - @pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test doesn't work in Github Actions atm") + # @pytest.mark.skipif(IN_GITHUB_ACTIONS, reason="Test doesn't work in Github Actions atm") def test_checkpoint_loading(self): wandb_logger = WandbLogger(dir=get_wandb_log_dir_path(), mode="offline")