Skip to content

Commit

Permalink
Merge branch '8-adding-workflow-for-python-and-markdown-checkup' of h…
Browse files Browse the repository at this point in the history
…ttps://github.com/ai-cfia/harvester-prototype into 8-adding-workflow-for-python-and-markdown-checkup
  • Loading branch information
SamuelPelletierEvraire committed Apr 10, 2024
2 parents b1103f5 + 8b87c6e commit 32db53e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import unittest

class testWithBaseQuestion(unittest.TestCase):
def setUp(self):
# This method will be called before each test
pass

def tearDown(self):
# This method will be called after each test
pass

def test_case_1(self):
# Write your test case here
pass

def test_case_2(self):
# Write your test case here
pass

if __name__ == '__main__':
unittest.main()
import unittest

class testWithBaseQuestion(unittest.TestCase):
def setUp(self):
# This method will be called before each test
pass

def tearDown(self):
# This method will be called after each test
pass

def test_case_1(self):
# Write your test case here
pass

def test_case_2(self):
# Write your test case here
pass

if __name__ == '__main__':
unittest.main()

0 comments on commit 32db53e

Please sign in to comment.