Skip to content

Commit

Permalink
address review
Browse files Browse the repository at this point in the history
  • Loading branch information
pramodk committed Oct 18, 2023
1 parent 7eb68e2 commit f710251
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nmodl-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
env:
CTEST_PARALLEL_LEVEL: 1
PYTHON_VERSION: 3.8
DESIRED_CMAKE_VERSION: 3.15
DESIRED_CMAKE_VERSION: 3.15.0

jobs:
ci:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ stages:
fi
./bin/nrnivmodl-core $(Build.Repository.LocalPath)/test/integration/mod
env:
CMAKE_PKG: 'cmake-3.17.0-Linux-x86_64'
CMAKE_PKG: 'cmake-3.15.0-Linux-x86_64'
SHELL: 'bash'
displayName: 'Build Neuron and Run Integration Tests'
- job: 'osx11'
Expand Down
5 changes: 2 additions & 3 deletions test/unit/visitor/defuse_analyze.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -448,16 +448,15 @@ SCENARIO("Perform DefUse analysis on NMODL constructs") {
GIVEN("Simple check of assigned variables") {
const std::string nmodl_text = R"(
NEURON {
GLOBAL x
SUFFIX foo
}
ASSIGNED {
y
}
DERIVATIVE states {
x = 1
y = x
y = 1
y = y + 2
}
)";
Expand Down

0 comments on commit f710251

Please sign in to comment.