Skip to content

Commit

Permalink
Add ICML test
Browse files Browse the repository at this point in the history
  • Loading branch information
dli7319 committed Apr 11, 2024
1 parent 26a2387 commit d917bc5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/inputs/diffusion.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@InProceedings{pmlr-v37-sohl-dickstein15,
title = {Deep Unsupervised Learning using Nonequilibrium Thermodynamics},
author = {Sohl-Dickstein, Jascha and Weiss, Eric and Maheswaranathan, Niru and Ganguli, Surya},
booktitle = {Proceedings of the 32nd International Conference on Machine Learning},
pages = {2256--2265},
year = {2015},
editor = {Bach, Francis and Blei, David},
volume = {37},
series = {Proceedings of Machine Learning Research},
address = {Lille, France},
month = {07--09 Jul},
publisher = {PMLR},
pdf = {http://proceedings.mlr.press/v37/sohl-dickstein15.pdf},
url = {https://proceedings.mlr.press/v37/sohl-dickstein15.html},
}
7 changes: 7 additions & 0 deletions tests/test_find_dois.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,11 @@ def test_tvcg_doi(filename, correct_doi):
])
def test_neurips_doi(filename):
# NeurIPS does not have a DOI
search_and_check_doi(filename, "")

@pytest.mark.parametrize("filename", [
("diffusion.bib"),
])
def test_icml_doi(filename):
# ICML does not have a DOI
search_and_check_doi(filename, "")

0 comments on commit d917bc5

Please sign in to comment.