From 82237558b461ddb28b4c2de0d77520167aca5b34 Mon Sep 17 00:00:00 2001 From: Peter Meisrimel Date: Tue, 12 Nov 2024 10:56:07 +0100 Subject: [PATCH] simplified workflow file; added changelog --- .github/workflows/build.yml | 3 +-- CHANGELOG | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6071bcec..0c5cea78 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,5 +57,4 @@ jobs: - name: Build run: python3 setup.py install --user --fmil-home=/usr - name: Test - run: | - pytest --verbose . + run: pytest diff --git a/CHANGELOG b/CHANGELOG index e4ff1774..cda66ed7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,10 @@ * Added option to limit the size of the result ("result_max_size"), default set to 2GB. * Added method ResultDymolaBinary.get_variables_data. Included some minor refactorization. The new method allows for retrieving partial trajectories, and multiple trajectories at once. + * Changed testing framework from `nose` to `pytest`. + * Removed tests from the PyFMI installation. + * Moved test files from src/pyfmi/tests/... to tests/files/... + * Moved test_util.* from src/pyfmi/tests to src/pyfmi --- PyFMI-2.14.0 --- * Updated the error message displayed when loading FMUs with needsExecutionTool set to True.