Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Fuzz Testing
on:
push:
branches: [develop]
pull_request:
branches: [develop]

jobs:
fuzz:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Tests

on:
push:
branches: [main]
branches: [main, develop]
pull_request:
branches: [main]
branches: [main, develop]

jobs:
test:
Expand Down
6 changes: 4 additions & 2 deletions tests/unit/init_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@


class TestVersion:
def test_version_is_0_1_0(self):
assert pyjsclear.__version__ == '0.1.0'
def test_version_is_semver(self):
parts = pyjsclear.__version__.split('.')
assert len(parts) == 3
assert all(p.isdigit() for p in parts)


class TestDeobfuscate:
Expand Down
Loading