Skip to content

Commit

Permalink
move test_claim_commands and test_resolve_command into new directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrobison committed Oct 5, 2021
1 parent 8167af9 commit 0939589
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
test:
- datanetwork
- blockchain
- claims
- blockchain_legacy_search
- other
steps:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ __pycache__
_trial_temp/
trending*.log

/tests/integration/blockchain/files
/tests/integration/claims/files
/tests/.coverage.*

/lbry/wallet/bin
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion tests/integration/other/test_transcoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pathlib
import time

from ..blockchain.test_claim_commands import ClaimTestCase
from ..claims.test_claim_commands import ClaimTestCase
from lbry.conf import TranscodeConfig
from lbry.file_analysis import VideoFileAnalyzer

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ setenv =
commands =
orchstr8 download
blockchain: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.blockchain {posargs}
claims: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.claims {posargs}
datanetwork: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.datanetwork {posargs}
other: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.other {posargs}

[testenv:blockchain_legacy_search]
setenv =
ENABLE_LEGACY_SEARCH=1
commands =
coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.blockchain {posargs}
coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.claims {posargs}

0 comments on commit 0939589

Please sign in to comment.