Skip to content

Commit

Permalink
Testing forcing the package install
Browse files Browse the repository at this point in the history
  • Loading branch information
dbirman committed Sep 5, 2023
1 parent 3657e6a commit 0157ea2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
python-version-file: API/pyproject.toml
# cache: 'pip'

- name: Install
run: pip install API/.
# Install dependencies (if any). They will be cached with saved for next time with the cache command above

# 3.4.3. Run tests (execute arbitrary commands in shell)
Expand Down
2 changes: 1 addition & 1 deletion API/tests/test_urchin_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def test_sanitize_vec3(self):

self.assertEqual(urchin.utils.sanitize_vector3((1,2,3)), [1,2,3])

# self.assertRaises(Exception, urchin.utils.sanitize_vector3((1,2)))
self.assertRaises(Exception, urchin.utils.sanitize_vector3, (1,2))

0 comments on commit 0157ea2

Please sign in to comment.