Skip to content

Commit

Permalink
Update and modify files for the project
Browse files Browse the repository at this point in the history
- Updated files:
  - .github/workflows/tests.yml
  - tests/integration/test_bee_integration.py
  • Loading branch information
Aviksaikat committed Jan 6, 2024
1 parent 748131e commit c44553b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
bee-factory start --detach 1.15.0-rc2
- name: Run Tests
run: pdm run pytest
run: pdm run pytest --cache-clear

# Don't need fuzzing I guess
# fuzzing:
Expand Down Expand Up @@ -162,4 +162,4 @@ jobs:
# bee-factory start --detach 1.15.0-rc2

# - name: Run Tests
# run: pdm run pytest
# run: pdm run pytest --cache-clear
2 changes: 1 addition & 1 deletion tests/integration/test_bee_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def test_delete_tags(bee_class):

try:
assert created_tag.uid != original_tags[0].uid
except: # noqa: E722
except AttributeError:
assert created_tag.tag_uid != original_tags[0].tag_uid


Expand Down

0 comments on commit c44553b

Please sign in to comment.