Skip to content

Commit

Permalink
Gitgub actions trigger fail
Browse files Browse the repository at this point in the history
Signed-off-by: Deniz Deli <d.deli@campus.tu-berlin.de>
  • Loading branch information
ddeli committed Nov 27, 2024
1 parent 6b06808 commit 7b6f816
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Make sure the following are installed on your machine:

Copy the database dump .dmp file in the projects root folder and rename it to **db_dump.sql**

5. **Clean Docker node_modules**:
5. **Delete Docker node_modules**:

```bash
docker volume rm amos2024ws02-backup-metadata-analyzer_mono-node-modules
Expand Down
17 changes: 17 additions & 0 deletions apps/analyzer/tests/test_action.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""Main unit test module."""

from metadata_analyzer.main import hello_world, update_data
from metadata_analyzer.analyzer import Analyzer
from metadata_analyzer.models import Result
from metadata_analyzer.simple_rule_based_analyzer import SimpleRuleBasedAnalyzer
from datetime import datetime
from tests.mock_backend import MockBackend
from tests.mock_database import MockDatabase

def test_force_fail():
"""Force failing test"""
assert False

# def test_force_fail():
# """Force passing test"""
# assert True

0 comments on commit 7b6f816

Please sign in to comment.