Skip to content

Commit

Permalink
Merge pull request #23 from hazzery/adding-user-login
Browse files Browse the repository at this point in the history
Adding user login
  • Loading branch information
hazzery authored Nov 18, 2024
2 parents 778b862 + bfc2850 commit 81d4d48
Show file tree
Hide file tree
Showing 45 changed files with 1,757 additions and 943 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install coverage
pip install coverage rsa
- name: Run all unit tests
run: |
coverage run -m unittest discover -s tests
coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5.0.2
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repos:
name: run unit tests
pass_filenames: false
entry: python3 -m unittest
args: ["discover", "--start-directory", "/home/harry/PycharmProjects/socket-programming/tests"]
args: ["discover", "."]
language: system
stages: [pre-push]
types: [python]
1 change: 1 addition & 0 deletions client/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys

from logging_config import configure_logging

from .client import Client


Expand Down
Loading

0 comments on commit 81d4d48

Please sign in to comment.