dynare/CONTRIBUTING.md

9.6 KiB
Raw Blame History

Instructions for Contributing to Dynare

Introduction

Hello from the Dynare Team! Were happy youre on this page because hopefully that means youre thinking of getting directly involved with the Dynare project. Herein, we outline how you can contribute to Dynare. Please read this document all the way through before contributing.

Please follow the steps in the sections below in order. Note that, though wed love for you to contribute code, you dont need to be a programmer to contribute to Dynare. You can report bugs, ask for enhancements, fix typos in the manual, contribute tests to the test suite, or do something we havent thought of yet!

If something is not clear, dont hesitate to ask if you cant find the answer online. You can contact us directly at dev@dynare.org.

Please note that the repositories under the purview of this page are:

Making your Intentions Known

Before making changes to the codebase, itd be helpful if you communicated your intentions with us. This will avoid double work and ensure that you dont contribute code that wont be included in Dynare for one reason or another.

Create your account on our GitLab instance

All the development of Dynare happens in GitLab, which is an integrated environment for storing code under git, keeping track of issues and milestones, and perform testing. The Dynare Team has its own instance of GitLab.

In order to work with us, you need to create your account on our GitLab instance on the register page. Note that account requests are manually validated, so be prepared to wait for a couple of hours or days before your account is created; if your account request is rejected, do not hesitate to contact us directly.

You will also need to register your SSH key in your GitLab profile if you want to contribute code.

Issues: Reporting Bugs

You can report bugs in both the stable and unstable versions of Dynare. Before reporting a bug in the stable version of Dynare, please check the Known Bugs page to ensure it has not already been encountered/fixed. If reporting a bug in the unstable version of Dynare, please ensure the bug exists in the latest unstable Dynare snapshot.

To report a bug in Dynare, simply open a Gitlab issue in the repository where the bug resides. For example, to report a bug in Dynare itself, go to the Dynare repository issue page and click on "New Issue."

The minimal information to add is a subject and a description of the steps needed to reproduce the bug. However, the most helpful description would also provide the code to reproduce the bug (often times a .mod file). The most helpful .mod file is a minimal, quick-running example that reproduces the bug, but well take anything that will help us squash a bug.

To include short amounts of code, please paste it into the description box, using the appropriate GitLab Flavored Markdown code. For larger amounds of code like .mod files, please create a new GitLab snippet and provide the link in the description box.

Issues: Enhancements

Issues are not only used to report bugs. They are also used to ask for improvements to the codebase or new features to Dynare in general. Please be descriptive when asking for improvements or new features. Links or references to papers or detailed examples are helpful.

Though our development priorities lay with those who finance Dynare and with what we think may most benefit the Dynare community, this does not mean we are closed to outside ideas for enhancements. On the contrary: we invite them! Moreover, if you are willing to program the enhancement you want, the odds of it being included in Dynare are much higher than if you needed us to do it. That said, it is best to create an issue with an enhancement idea before beginning the work. As stated above, this is important to avoid duplication of work and also because we wouldnt want you to take the time to work on something that would not end up being included in Dynare.

Get to Coding!

So, now youve reported the bug or asked for an enhancemnt by creating a GitLab issue. Thats already a great help. Thank you!

Now, if you want to go the extra mile, youll volunteer to contribute code to fix the GitLab issue you created above. Once weve agreed that youll do it, please do the following:

  1. Clone the Dynare repository:
    • git clone --recurse-submodules https://git.dynare.org/Dynare/dynare.git
  2. Fork the Dynare repository
  3. Change into the dynare folder and add the forked repository as a remote:
    • cd dynare
    • git remote add personal git@git.dynare.org:<<GitLab username>>/dynare.git
  4. Create a branch to work on
    • git checkout -b <<descriptive branch name>>
  5. Do your work, all the while respecting the Dynare Coding Guidelines
  6. You may also want to have a look at the coding resources

As you work, your forked repository will likely fall out of sync with the main Dynare repository as well be working in parallel. No matter. Follow these steps to ensure your changes will be merge-able when theyre done:

  1. Get the changes from the main Dynare repository:
    • git checkout master
    • git fetch
    • git rebase origin master
  2. Move your changes on top of the current master branch of Dynare
    • git checkout <<descriptive branch name>>
    • git rebase origin/master
    • This last command may cause a conflict. It is up to you to resolve this conflict.

Once youve made the changes necessary to fix the bug or add an enhancement, ensure that it has been rebased on the master branch (following the steps above), commit it, push it to your forked Dynare repository, and create a pull request:

  1. Get the latest changes from Dynare and rebase your branch on top of them (see above)
  2. Commit your changes:
    • git add <<files to commit>>
    • git commit -m "<<descriptive commit message.>> Closes: #<<Ref. to GitLab issue number fixed by this commit>>"
  3. Push to your forked Dynare repository
    • git push personal <<descriptive branch name>>
  4. Create a Merge Request from the branch in your forked Dynare repository

Tests

The Dynare testsuite runs every time a commit is pushed, either in the official repository or in your personal repository, through GitLab Continuous Integration. Its how we quickly catch bugs that may have been introduced by changes made.

The output from the latest run of the test suite can be found in the test_matlab job associated to the latest pipeline. This is also a good place to start fixing bugs. If you see a .mod file that doesnt run in the test suite and think you can fix it, create an issue and once you have the go ahead, go for it!

Integration tests

Its useful to contribute .mod files that test some aspect of Dynare that is not currently tested. A .mod file that runs into a bug is perfect. As the test suite currently takes several hours to run, we prefer you modify a current test to also create the bug youve found. If you cant do that, please add a new test that runs as quickly as possible. It will contain only those commands necessary to create the bug, nothing more. To contribute a test, after having made an issue and cloned and forked the repository as described above, do the following:

  1. Modify the mod_and_m_tests variable in meson.build with a entry containing your test file name
  2. If any ancillary files are needed to run your test, please include them in the 'extra' field
  3. Add and commit your test file and meson.build as described above
  4. Push and create a pull request as described above

Unit tests

So-called unit tests allow the test suite to check the correct functioning of the MATLAB/Octave functions contained in Dynare. To add a unit test you need to

  1. add the return % --*-- Unit tests --*-- at the end of the function to tell the testsuite that the file contains unit tests.
  2. Add the particular tests at the end of the file after the return statement by
    1. Starting a test with %@test:INTEGER
    2. Adding a MATLAB/Octave test code that provides a pass/fail indicator T that takes on true if the test passed.
    3. Closing the test with %@eof:INTEGER where INTEGER denotes the number of the test.

An example testing the correct functionality of mode-computations for a normal distribution is

function m = compute_prior_mode(hyperparameters,shape)

return  % --*-- Unit tests --*--

%@test:1
% Normal density
try
    m1 = compute_prior_mode([1 1],3);
    t(1) = true;
catch
    t(1) = false;
end
%$
if t(1)
    t(2) = dassert(m1,1,1e-6);
end
T = all(t);
%@eof:1

You can also put a unit test after the closing end, but in this case you will need to preface each line with %$. See e.g. be4a4d39c1