Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
python-version: [ "3.10", "3.11" ]
defaults:
run:
Expand Down Expand Up @@ -100,7 +100,11 @@ jobs:
#----------------------------------------------
- name: Run tests
run: |
source $VENV
if [ "$RUNNER_OS" == "Windows" ]; then
source .venv/Scripts/activate
else
source .venv/bin/activate
fi
coverage run -m unittest discover -s tests
# #----------------------------------------------
# # upload coverage stats
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "05764fc8"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "0aa37205"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "3cccceb1"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "438274dc"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "47293173"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "6a6575cd"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "6bdb0580"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "7663c4cd"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "8503561a"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "9351cfaa"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "a023229a"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "b9e3779b"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "c7b79e46"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "cb76aaeb"
}
28 changes: 28 additions & 0 deletions tests/resources/backtest_reports_for_testing/checkpoints.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"2022-12-03T00:00:00+00:00_2025-12-02T00:00:00+00:00": [
"0aa37205",
"e8c2060c",
"b9e3779b",
"8503561a",
"6bdb0580",
"a023229a",
"c7b79e46",
"438274dc",
"7663c4cd",
"cb76aaeb",
"6a6575cd",
"05764fc8",
"3cccceb1",
"47293173",
"eab0e4aa",
"9351cfaa"
],
"2023-12-03T00:00:00+00:00_2025-12-02T00:00:00+00:00": [
"0aa37205",
"e8c2060c",
"b9e3779b",
"8503561a",
"6bdb0580",
"a023229a"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "e8c2060c"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"algorithm_id": "eab0e4aa"
}
Loading