Skip to content

Commit

Permalink
Create integration.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cicirello committed Mar 10, 2021
1 parent 8fe5460 commit 8e9f5c7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/integration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@



import unittest

class TestIntegration(unittest.TestCase) :

def test_sometestcase(self) :
# The test cases here should use appropriate
# asserts to verify that the output of the
# integration is correct.
# That is, after separately running the
# unit test cases (see tests.py), your
# workflow should run the action locally
# against the action's own repository,
# and then after that, run these integration
# tests.
pass

def test_anothertestcase(self) :
pass

0 comments on commit 8e9f5c7

Please sign in to comment.