Skip to content

Commit

Permalink
[MAINT] Support Windows' paths; Update zenodo & contributor count (#672)
Browse files Browse the repository at this point in the history
* Use platform-agonostic paths in integration tests

* Add Zaki to zenodo.json

* Update contributor-count on readme badge
  • Loading branch information
notZaki authored Feb 5, 2021
1 parent f8802df commit 08f6a87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
{
"name": "The tedana Community"
},
{
"name": "Ahmed, Zaki",
"affiliation": "Mayo Clinic",
"orcid": "0000-0001-5648-0590"
},
{
"name": "Bandettini, Peter A.",
"affiliation": "National Institutes of Health",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ multi-echo functional magnetic resonance imaging (fMRI) data.
[![Percentage of issues still open](http://isitmaintained.com/badge/open/ME-ICA/tedana.svg)](http://isitmaintained.com/project/ME-ICA/tedana "Percentage of issues still open")
[![Join the chat at https://gitter.im/ME-ICA/tedana](https://badges.gitter.im/ME-ICA/tedana.svg)](https://gitter.im/ME-ICA/tedana?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Join our tinyletter mailing list](https://img.shields.io/badge/receive-our%20newsletter%20❤%EF%B8%8F-blueviolet.svg)](https://tinyletter.com/tedana-devs)
[![All Contributors](https://img.shields.io/badge/all_contributors-14-orange.svg?style=flat-square)](#contributors)
[![All Contributors](https://img.shields.io/badge/all_contributors-20-orange.svg?style=flat-square)](#contributors)


## About
Expand Down Expand Up @@ -141,4 +141,4 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
To see what contributors feel they've done in their own words, please see our [contribution recognition page][contribution].

[contribution]: <contributions.md>
[contribution]: <contributions.md>
1 change: 1 addition & 0 deletions tedana/tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def check_integration_outputs(fname, outpath):
# Compares remaining files with those expected
with open(fname, 'r') as f:
tocheck = f.read().splitlines()
tocheck = [os.path.normpath(path) for path in tocheck]
assert sorted(tocheck) == sorted(existing)


Expand Down

0 comments on commit 08f6a87

Please sign in to comment.