Skip to content

Commit

Permalink
Creating test module
Browse files Browse the repository at this point in the history
  • Loading branch information
javinoram committed May 8, 2024
1 parent 7bc93c5 commit 63cebca
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/push_event_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Push Event Workflow

on: push

jobs:
unit-testing:
runs-on: ubuntu-latest

steps:
- name : Checkout code
uses : actions/checkout@v4

- name : Install Packages
run : pip install pytest

- name : Run tests
run : pytest tests/test.py
8 changes: 8 additions & 0 deletions tests/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
def test_hamiltonian_molecule():
assert 1==1

def test_hamiltonian_spin():
assert 1==1

def test_hamiltonian_fh():
assert 1==1

0 comments on commit 63cebca

Please sign in to comment.