Skip to content
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

Make repository compliant with SCM #50

Merged
merged 2 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ pip install -e /path/to/package

This will install package in _editable_ mode. Convenient for local development

### Contributing

We welcome all kinds of contributions, including code, bug reports, issues, feature requests, and documentation. The
preferred way of submitting a contribution is to either make an [issue](https://github.com/equinor/isar/issues) on
GitHub or by forking the project on GitHub and making a pull requests.

### How to use

The tests in this repository can be used as examples
Expand Down
18 changes: 18 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## SECURITY

If you discover a security vulnerability in this project, please follow these steps to responsibly disclose it:

1. **Do not** create a public GitHub issue for the vulnerability.
2. Follow our guideline for Responsible Disclosure Policy at [https://www.equinor.com/about-us/csirt](https://www.equinor.com/about-us/csirt) to report the issue

The following information will help us triage your report more quickly:

- Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
- Full paths of source file(s) related to the manifestation of the issue
- The location of the affected source code (tag/branch/commit or direct URL)
- Any special configuration required to reproduce the issue
- Step-by-step instructions to reproduce the issue
- Proof-of-concept or exploit code (if possible)
- Impact of the issue, including how an attacker might exploit the issue

We prefer all communications to be in English.
3 changes: 0 additions & 3 deletions tests/test_alignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def test_align_positions_translation_only():


def test_align_positions_one_dimension():

expected_rotation = np.array([np.pi / 2, 0, 0])
expected_translation = np.array([0, 0, 0])

Expand Down Expand Up @@ -78,7 +77,6 @@ def test_align_positions_one_dimension():


def test_align_positions_three_dimensions():

expected_rotation = np.array([np.pi / 2, np.pi / 4, np.pi / 2])
expected_translation = np.array([0, 0, 0])
hyp = np.sqrt(1 / 2)
Expand Down Expand Up @@ -116,7 +114,6 @@ def test_align_positions_three_dimensions():


def test_align_positions_rotation_and_translation():

expected_rotation = np.array([np.pi / 2, 0, 0])
expected_translation = np.array([2, -1, 0])

Expand Down
Loading