Skip to content

Commit c571577

Browse files
committed
Move conftest.py to tests/
1 parent acf93e0 commit c571577

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: ["3.6", "3.7", "3.8", "3.9"]
1515

1616
steps:
1717
- uses: actions/checkout@v2
File renamed without changes.

tests/torchinfo_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import torchvision # type: ignore[import]
55
from torch import nn
66

7-
from conftest import verify_output_str
87
from fixtures.genotype import GenotypeNetwork # type: ignore[attr-defined]
98
from fixtures.models import (
109
AutoEncoder,
@@ -27,6 +26,7 @@
2726
SingleInputNet,
2827
)
2928
from fixtures.tmva_net import TMVANet # type: ignore[attr-defined]
29+
from tests.conftest import verify_output_str
3030
from torchinfo import ALL_COLUMN_SETTINGS, summary
3131

3232

0 commit comments

Comments
 (0)