Skip to content

Commit

Permalink
updated ARCHITECTURE.md & fixed paths
Browse files Browse the repository at this point in the history
  • Loading branch information
HardMax71 committed Aug 8, 2024
1 parent 0b1dd2c commit 377454c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/server-check.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# .github/workflows/server-check.yml

name: Server Check

on:
Expand All @@ -22,6 +21,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r server/requirements.txt
cd server
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: python -m unittest discover server/tests
run: |
pytest tests
Empty file removed nexusware.db
Empty file.
1 change: 1 addition & 0 deletions server/app/core/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /server/app/core/config.py
from pydantic_settings import BaseSettings


Expand Down
1 change: 1 addition & 0 deletions server/tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# /server/tests/test_main.py
import unittest

from fastapi.testclient import TestClient
Expand Down

0 comments on commit 377454c

Please sign in to comment.