Skip to content

Commit

Permalink
Fixing path for running servers in tests.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilyho11 committed Mar 31, 2024
1 parent 17c4115 commit 4a073ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Test backend
run: |
echo "Starting Servers"
node backend\api_gateway\src\index.js
node backend/api_gateway/src/index.js
sleep 5
echo "Testing unique prescriber codes and pdf generation"
Expand Down
1 change: 1 addition & 0 deletions backend/auth_service/database_Authentications.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,5 +335,6 @@ def register_service(service_name, service_url):
print("Starting Authentication Service on port", app.config["PORT"])
register_service("authentication-service", f"http://127.0.0.1:{app.config['PORT']}")


if __name__ == "__main__":
app.run(debug=True, port=PORT)

0 comments on commit 4a073ac

Please sign in to comment.