We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9defd2 commit 5135de5Copy full SHA for 5135de5
.github/workflows/tests.yml
@@ -35,9 +35,10 @@ jobs:
35
run: |
36
if [ -d "tests" ] && [ "$(find tests -name '*.py' -not -name '__init__.py' | wc -l)" -gt 0 ]; then
37
echo "Running tests"
38
- pytest tests/ -v --cov=src --cov-report=term-missing
+ pytest tests/ -v --cov=src --cov-report=term-missing -p no:ethereum
39
else
40
- echo "No tests found - create files in tests/ directory to run tests"
+ echo "No tests found. Test directory is empty or doesn't contain test files."
41
+ echo "Tests will be skipped until test files are added."
42
fi
43
44
# =============================================================================
0 commit comments