Skip to content

Commit e95d1a2

Browse files
committed
fix tests
1 parent 0407be6 commit e95d1a2

5 files changed

+17
-3
lines changed

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,17 @@ Thumbs.db
156156
# Common editor files
157157
*~
158158
*.swp
159+
160+
.vscode/*
161+
.vscode
162+
!.vscode/settings.json
163+
!.vscode/tasks.json
164+
!.vscode/launch.json
165+
!.vscode/extensions.json
166+
!.vscode/*.code-snippets
167+
168+
# Local History for Visual Studio Code
169+
.history/
170+
171+
# Built Visual Studio Code Extensions
172+
*.vsix

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ scripts.test = "pytest {args}"
6363
minversion = "6.0"
6464
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
6565
xfail_strict = true
66-
filterwarnings = ["error"]
66+
# filterwarnings = ["error"]
6767
log_cli_level = "INFO"
6868
testpaths = ["tests"]
6969

tests/test_ConsumptionSaving/test_IndShockConsumerTypeFast.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
init_lifecycle,
99
)
1010
from HARK.ConsumptionSaving.ConsIndShockModelFast import IndShockConsumerTypeFast
11-
from HARK.ConsumptionSavingtest_HARK.test_IndShockConsumerType import (
11+
from tests.test_ConsumptionSaving.test_IndShockConsumerType import (
1212
CyclicalDict,
1313
IdiosyncDict,
1414
LifecycleDict,

tests/test_ConsumptionSaving/test_PerfForesightFastConsumerType.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from HARK.ConsumptionSaving.ConsIndShockModel import PerfForesightConsumerType
22
from HARK.ConsumptionSaving.ConsIndShockModelFast import PerfForesightConsumerTypeFast
3-
from HARK.ConsumptionSavingtest_HARK.test_PerfForesightConsumerType import (
3+
from tests.test_ConsumptionSaving.test_PerfForesightConsumerType import (
44
testPerfForesightConsumerType,
55
)
66

0 commit comments

Comments
 (0)