-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update: docs revamp #249
Merged
Merged
Update: docs revamp #249
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* Custom CSS */ | ||
|
||
/* Note: /* | ||
The CSS below will only work if 'logo_only':True in conf.py, but will require adjusting if False. | ||
*/ | ||
|
||
.wy-side-nav-search a .logo { | ||
max-width: 200px; | ||
max-height: 170px; | ||
height: auto; | ||
width:auto; | ||
} | ||
|
||
|
||
|
||
.wy-nav-top a { | ||
color: #131E29; /* Change the colour of the homepage navigation title on mobiles */ | ||
} | ||
|
||
.wy-menu-vertical p.caption { | ||
|
||
color: #9ADBE8; /* Change the colour of captions*/ | ||
} | ||
|
||
|
||
.rst-content code.literal, .highlight .s2, .highlight .s1, .rst-content tt.literal{ | ||
color: #440099; | ||
font-weight: bold; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Acknowledging CITCOM | ||
********************* | ||
|
||
If you use the Causal Testing Framework for your work, please add the following line within your paper to acknowledge | ||
our work: | ||
|
||
.. admonition:: Important | ||
:class: important | ||
|
||
This research has used version X.Y.Z (software citation) of the Causal Testing Framework (paper citation). | ||
|
||
The paper citation should be the Causal Testing Framework paper_, and the software citation should be the specific | ||
Figshare DOI_ for the version used in your research. | ||
|
||
.. _paper: https://dl.acm.org/doi/10.1145/3607184 | ||
.. _DOI: https://dl.acm.org/doi/10.1145/3607184 | ||
|
||
.. code-block:: latex | ||
|
||
@ARTICLE{Clark_etal_2023, | ||
author = {Clark, Andrew G. and Foster, Michael and Prifling, Benedikt and Walkinshaw, Neil and Hierons, Robert M. | ||
and Schmidt, Volker and Turner, Robert D.}, | ||
title = {Testing Causality in Scientific Modelling Software}, | ||
year = {2023}, | ||
publisher = {Association for Computing Machinery}, | ||
url = {https://doi.org/10.1145/3607184}, | ||
doi = {10.1145/3607184}, | ||
journal = {ACM Trans. Softw. Eng. Methodol.}, | ||
month = {jul}, | ||
keywords = {Software Testing, Causal Testing, Causal Inference} | ||
} | ||
|
||
The CITCOM Team | ||
*************** | ||
|
||
- Andrew G. Clark, Michael Foster, Richard Somers, Christopher Wild, Farhad Allian, Neil Walkinshaw. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,30 @@ | ||
Github Actions and Webhooks | ||
=========================== | ||
|
||
Github Actions | ||
Actions | ||
-------------- | ||
|
||
Currently this project makes use of 3 `Github Actions <https://github.com/features/actions>`_, which can be found in the `.github/workflows <https://github.com/CITCOM-project/CausalTestingFramework/tree/main/.github/workflows>`_ directory | ||
Currently, this project makes use of 3 `Github Actions <https://github.com/features/actions>`_, | ||
which can be found in the | ||
`.github/workflows <https://github.com/CITCOM-project/CausalTestingFramework/tree/main/.github/workflows>`_ directory. | ||
|
||
They are: | ||
|
||
#. ci-tests.yaml, which runs CI tests on each PR | ||
#. ``ci-tests.yaml``, which runs continuous integration (CI) tests on each on each pull request. | ||
|
||
#. lint-format.yaml, runs linting on each PR | ||
#. ``lint-format.yaml``, which runs linting on each pull request. | ||
|
||
#. publish-to-pypi.yaml, runs when a new version tag is pushed and publishes that tag version to pypi | ||
#. ``publish-to-pypi.yaml``, runs when a new version tag is pushed and publishes that tag version to PyPI. | ||
|
||
Github Webhooks | ||
Webhooks | ||
--------------- | ||
|
||
The project also uses 3 `Webhooks <https://docs.github.com/en/webhooks-and-events/webhooks/about-webhooks>`_, which can be found in the `project settings <https://github.com/CITCOM-project/CausalTestingFramework/settings>`_ on Github | ||
The project also uses 3 `Webhooks <https://docs.github.com/en/webhooks-and-events/webhooks/about-webhooks>`_, which can | ||
be found in the `project settings <https://github.com/CITCOM-project/CausalTestingFramework/settings>`_ on Github. These | ||
include: | ||
|
||
#. To codacy | ||
#. `Codacy <https://github.com/codacy>`_ | ||
|
||
#. To codecov | ||
#. `Codecov <https://github.com/codecov>`_ | ||
|
||
#. To readthedocs | ||
#. `Read the Docs <https://github.com/readthedocs>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess causal test cases are no longer technically "triple"s but I don't think this matters