Skip to content

Commit 1a13e8d

Browse files
committed
Add contributing section to README
1 parent faa1a08 commit 1a13e8d

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,18 @@ We implemented an ipywidget version of AnchorViz and use it in this project, it
4444

4545
<!-- documentation section -->
4646

47+
## Contributing
48+
49+
Contributions for improving ICAT are welcome! If you run into any problems, find
50+
bugs, or think of useful improvements and enhancements, feel free to open an
51+
[issue](https://github.com/ORNL/icat/issues).
52+
53+
If you add a feature or fix a bug yourself and want it considered for
54+
integration, feel free to open a pull request with the changes. Please provide
55+
a detailed description of what the pull request is doing and briefly list any
56+
significant changes made. If it's in regards to a specific issue, please include
57+
or link the issue number.
58+
4759
## Citation
4860

4961
To cite usage of ICAT, please use the following bibtex:

tests/test_browser.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ def test_jupyter(jupyter_server, page):
99
page.goto("http://127.0.0.1:9997/lab?reset")
1010
expect(page).to_have_title(re.compile("JupyterLab"))
1111

12-
page.get_by_text("simple_example.ipynb").dblclick()
12+
# page.get_by_text("simple_example.ipynb").dblclick(delay=1000)
13+
page.get_by_role("listitem", name="Name: simple_example.ipynb").dblclick(delay=500)
1314
expect(page.locator("#Simple-Example")).to_be_visible()
1415

1516
# page.locator("div#jp-main-dock-panel > div.lm-Widget.jp-Editor.jp-InputArea-editor").first.click()

0 commit comments

Comments
 (0)