Skip to content

Commit

Permalink
github: revert previous and add artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkin committed Jan 21, 2024
1 parent c4713f3 commit 748d48d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
pip install -r requirements.txt
- name: Build
run: python setup.py develop
- name: Save binaries
uses: actions/upload-artifact@v4
with:
name: binary
path: |
*.so
- name: Test
run: pytest -v

Expand Down
7 changes: 1 addition & 6 deletions pyteleport/bytecode/minias.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,12 +683,7 @@ def from_iterable(
current = c

if verify:
try:
verify_instructions(instructions)
except:
import logging
AssembledBytecode.from_code_object(source).print(logging.debug)
raise
verify_instructions(instructions)

if compute_stack_size:
assign_stack_size(instructions)
Expand Down

0 comments on commit 748d48d

Please sign in to comment.