Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
reporting
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dynare
reporting
Commits
0926fe06
Verified
Commit
0926fe06
authored
Sep 03, 2019
by
Houtan Bastani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update tests to account for report created in different directory
parent
1e04db5f
Pipeline
#1702
passed with stage
in 54 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
Makefile
Makefile
+2
-2
No files found.
.gitlab-ci.yml
View file @
0926fe06
...
...
@@ -7,7 +7,7 @@ testsuite_matlab:
-
make check-matlab
artifacts
:
paths
:
-
test/report.pdf
-
test/
my/report/dir/
report.pdf
testsuite_octave
:
stage
:
test
...
...
@@ -15,4 +15,4 @@ testsuite_octave:
-
make check-octave
artifacts
:
paths
:
-
test/report.pdf
-
test/
my/report/dir/
report.pdf
Makefile
View file @
0926fe06
...
...
@@ -5,7 +5,7 @@ all: check-octave check-matlab
check-octave
:
@
cd test
;
\
$(OCTAVE)
--no-init-file
--silent
--no-history
--eval
"addpath([pwd() '/../dseries/src']); addpath([pwd() '/../src']); runtest;"
&&
[
-f
report.pdf
]
$(OCTAVE)
--no-init-file
--silent
--no-history
--eval
"addpath([pwd() '/../dseries/src']); addpath([pwd() '/../src']); runtest;"
&&
[
-f
my/report/dir/
report.pdf
]
check-matlab
:
@
$(MATLAB)
-nosplash
-nodisplay
-r
"addpath dseries/src; addpath src; cd test; runtest; quit"
&&
[
-f
test
/report.pdf
]
@
$(MATLAB)
-nosplash
-nodisplay
-r
"addpath dseries/src; addpath src; cd test; runtest; quit"
&&
[
-f
test
/
my/report/dir/
report.pdf
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment