Skip to content

Commit

Permalink
Move time evolution tests to extension tests (#185)
Browse files Browse the repository at this point in the history
* Fix symbolic version

* increase timout-minutes of CI

* Move TimeEvolution tests to Extention tests
  • Loading branch information
oameye authored Jun 10, 2024
1 parent 41416e6 commit a9607d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ files = [
"plotting.jl",
"krylov.jl",
"linear_response.jl",
"limit_cycle.jl",
"time_evolution.jl",
"hysteresis_sweep.jl"
"limit_cycle.jl"
]

files_ext = [
"ModelingToolkitExt.jl",
"SteadyStateDiffEqExt.jl"
"SteadyStateDiffEqExt.jl",
"time_evolution.jl",
"hysteresis_sweep.jl"
]

for file in files
Expand Down

2 comments on commit a9607d4

@oameye
Copy link
Member Author

@oameye oameye commented on a9607d4 Jun 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/108648

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.2 -m "<description of version>" a9607d4756edad1ad077373e77894177ee7908ff
git push origin v0.9.2

Please sign in to comment.