Skip to content

Bugfix: multiprocessing.Pool is not a context manager in py 2. #204

Bugfix: multiprocessing.Pool is not a context manager in py 2.

Bugfix: multiprocessing.Pool is not a context manager in py 2. #204

Workflow file for this run

name: Test build and run tests
on:
push:
branches: [ legacy, legacy-dev ]
pull_request:
branches: [ legacy, legacy-dev ]
jobs:
tests-py2:
name: Runs tests that require python 2
runs-on: ubuntu-latest
container:
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# - name: Set up Python 2.7
# uses: actions/setup-python@v2
# with:
# python-version: "2.7"
- name: Test by decompiling a script and building un.rpyc
run: |
echo "Testing the command line tool"
./unrpyc.py --clobber --init-offset "testcases/compiled/**/*.rpyc"
diff -ur testcases/expected testcases/compiled -x "*.rpyc"
echo "Compiling un.rpyc"
cd un.rpyc;
./compile.py -p 1
cd ..
# test all the different iterations of it
echo "Testing un.rpyc"
./testcases/test_un_rpyc.py --unrpyc un.rpyc/un.rpyc "testcases/compiled/**/*.rpyc"
diff -ur testcases/expected testcases/compiled -x "*.rpyc"
echo "Testing bytecode.rpyb"
./testcases/test_un_rpyc.py --unrpyb un.rpyc/bytecode.rpyb "testcases/compiled/**/*.rpyc"
diff -ur testcases/expected testcases/compiled -x "*.rpyc"
echo "Testing un.rpy"
./testcases/test_un_rpyc.py --unrpy un.rpyc/un.rpy "testcases/compiled/**/*.rpyc"
diff -ur testcases/expected testcases/compiled -x "*.rpyc"