Skip to content

Commit 409854a

Browse files
committed
run all tests, start evaluation engine
1 parent fdba360 commit 409854a

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,16 @@ jobs:
112112
run: |
113113
chmod -R a+rw ./data
114114
chmod -R a+rw ./logs
115-
docker compose --profile rest-api --profile minio up -d
115+
docker compose --profile rest-api --profile minio --profile evaluation-engine up -d
116116
117117
echo "Waiting for PHP API to boot..."
118118
timeout 60s bash -c 'until [ "$(docker inspect -f {{.State.Health.Status}} openml-php-rest-api)" == "healthy" ]; do sleep 5; done'
119119
120120
echo "Final Verification: Gateway Connectivity..."
121121
curl -sSfL http://localhost:8000/api/v1/xml/data/1 | head -n 15
122122
123+
docker container ls
124+
123125
- name: Show installed dependencies
124126
run: python -m pip list
125127

@@ -139,7 +141,7 @@ jobs:
139141
marks="not production_server"
140142
fi
141143
142-
pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks" tests/test_datasets/test_dataset_functions.py::TestOpenMLDataset
144+
pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks"
143145
144146
- name: Run tests on Ubuntu Production
145147
if: matrix.os == 'ubuntu-latest'
@@ -157,7 +159,7 @@ jobs:
157159
marks="production_server"
158160
fi
159161
160-
pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks" tests/test_datasets/test_dataset_functions.py::TestOpenMLDataset
162+
pytest -n 4 --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks"
161163
162164
- name: Run tests on Windows
163165
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)