Skip to content

EfficientRep Variants #68

EfficientRep Variants

EfficientRep Variants #68

GitHub Actions / Test Results failed May 29, 2024 in 0s

7 fail, 25 skipped, 25 pass in 21m 4s

  4 files    4 suites   21m 4s ⏱️
 57 tests  25 ✅  25 💤  7 ❌
228 runs  114 ✅ 100 💤 14 ❌

Results for commit 63fd215.

Annotations

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_sanity[resnet_model.yaml] (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 17s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 20s]
Raw output
IndexError: list index out of range
config_file = 'resnet_model.yaml'

    @pytest.mark.parametrize(
        "config_file", [path for path in os.listdir("configs") if "model" in path]
    )
    def test_sanity(config_file):
        opts = [
            "trainer.epochs",
            "1",
            "trainer.validation_interval",
            "1",
            "trainer.callbacks",
            "[]",
        ]
        result = subprocess.run(
            ["luxonis_train", "train", "--config", f"configs/{config_file}", *opts],
        )
        assert result.returncode == 0
    
>       opts += ["model.weights", str(list(Path("output").rglob("*.ckpt"))[0])]
E       IndexError: list index out of range

tests/integration/test_sanity.py:31: IndexError

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_sanity[detection_model.yaml] (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 3s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 5s]
Raw output
IndexError: list index out of range
config_file = 'detection_model.yaml'

    @pytest.mark.parametrize(
        "config_file", [path for path in os.listdir("configs") if "model" in path]
    )
    def test_sanity(config_file):
        opts = [
            "trainer.epochs",
            "1",
            "trainer.validation_interval",
            "1",
            "trainer.callbacks",
            "[]",
        ]
        result = subprocess.run(
            ["luxonis_train", "train", "--config", f"configs/{config_file}", *opts],
        )
        assert result.returncode == 0
    
>       opts += ["model.weights", str(list(Path("output").rglob("*.ckpt"))[0])]
E       IndexError: list index out of range

tests/integration/test_sanity.py:31: IndexError

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_sanity[classification_model.yaml] (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 3s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 4s]
Raw output
IndexError: list index out of range
config_file = 'classification_model.yaml'

    @pytest.mark.parametrize(
        "config_file", [path for path in os.listdir("configs") if "model" in path]
    )
    def test_sanity(config_file):
        opts = [
            "trainer.epochs",
            "1",
            "trainer.validation_interval",
            "1",
            "trainer.callbacks",
            "[]",
        ]
        result = subprocess.run(
            ["luxonis_train", "train", "--config", f"configs/{config_file}", *opts],
        )
        assert result.returncode == 0
    
>       opts += ["model.weights", str(list(Path("output").rglob("*.ckpt"))[0])]
E       IndexError: list index out of range

tests/integration/test_sanity.py:31: IndexError

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_sanity[keypoint_bbox_model.yaml] (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 3s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 4s]
Raw output
IndexError: list index out of range
config_file = 'keypoint_bbox_model.yaml'

    @pytest.mark.parametrize(
        "config_file", [path for path in os.listdir("configs") if "model" in path]
    )
    def test_sanity(config_file):
        opts = [
            "trainer.epochs",
            "1",
            "trainer.validation_interval",
            "1",
            "trainer.callbacks",
            "[]",
        ]
        result = subprocess.run(
            ["luxonis_train", "train", "--config", f"configs/{config_file}", *opts],
        )
        assert result.returncode == 0
    
>       opts += ["model.weights", str(list(Path("output").rglob("*.ckpt"))[0])]
E       IndexError: list index out of range

tests/integration/test_sanity.py:31: IndexError

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_sanity[coco_model.yaml] (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 4s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 5s]
Raw output
IndexError: list index out of range
config_file = 'coco_model.yaml'

    @pytest.mark.parametrize(
        "config_file", [path for path in os.listdir("configs") if "model" in path]
    )
    def test_sanity(config_file):
        opts = [
            "trainer.epochs",
            "1",
            "trainer.validation_interval",
            "1",
            "trainer.callbacks",
            "[]",
        ]
        result = subprocess.run(
            ["luxonis_train", "train", "--config", f"configs/{config_file}", *opts],
        )
        assert result.returncode == 0
    
>       opts += ["model.weights", str(list(Path("output").rglob("*.ckpt"))[0])]
E       IndexError: list index out of range

tests/integration/test_sanity.py:31: IndexError

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_sanity[segmentation_model.yaml] (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 3s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 3s]
Raw output
IndexError: list index out of range
config_file = 'segmentation_model.yaml'

    @pytest.mark.parametrize(
        "config_file", [path for path in os.listdir("configs") if "model" in path]
    )
    def test_sanity(config_file):
        opts = [
            "trainer.epochs",
            "1",
            "trainer.validation_interval",
            "1",
            "trainer.callbacks",
            "[]",
        ]
        result = subprocess.run(
            ["luxonis_train", "train", "--config", f"configs/{config_file}", *opts],
        )
        assert result.returncode == 0
    
>       opts += ["model.weights", str(list(Path("output").rglob("*.ckpt"))[0])]
E       IndexError: list index out of range

tests/integration/test_sanity.py:31: IndexError

Check warning on line 0 in tests.integration.test_sanity

See this annotation in the file changed.

@github-actions github-actions / Test Results

2 out of 4 runs failed: test_tuner (tests.integration.test_sanity)

artifacts/Test Results [macOS-latest] (Python 3.10)/pytest.xml [took 3s]
artifacts/Test Results [macOS-latest] (Python 3.11)/pytest.xml [took 3s]
Raw output
AssertionError: assert 1 == 0
 +  where 1 = CompletedProcess(args=['luxonis_train', 'tune', '--config', 'configs/example_tuning.yaml', 'trainer.epochs', '1', 'trainer.validation_interval', '1', 'trainer.callbacks', '[]', 'tuner.n_trials', '4'], returncode=1).returncode
def test_tuner():
        Path("study_local.db").unlink(missing_ok=True)
        result = subprocess.run(
            [
                "luxonis_train",
                "tune",
                "--config",
                "configs/example_tuning.yaml",
                "trainer.epochs",
                "1",
                "trainer.validation_interval",
                "1",
                "trainer.callbacks",
                "[]",
                "tuner.n_trials",
                "4",
            ],
        )
>       assert result.returncode == 0
E       AssertionError: assert 1 == 0
E        +  where 1 = CompletedProcess(args=['luxonis_train', 'tune', '--config', 'configs/example_tuning.yaml', 'trainer.epochs', '1', 'trainer.validation_interval', '1', 'trainer.callbacks', '[]', 'tuner.n_trials', '4'], returncode=1).returncode

tests/integration/test_sanity.py:85: AssertionError