Skip to content

Commit

Permalink
Adding CICD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
joc22038 committed Jan 27, 2025
1 parent 47506bf commit 533c12e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion calculator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python program for simple calculator
# https://www.geeksforgeeks.org/make-simple-calculator-using-python/

# Function to add two numbers
# Function to add two numbers
def add(num1, num2):
return num1 + num2

Expand Down
2 changes: 0 additions & 2 deletions test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# test_with_pytest.py

# import pytest

from calculator import add

def test_add():
Expand Down

0 comments on commit 533c12e

Please sign in to comment.