8000 Add raw_as_bytes option to Unpacker. by methane · Pull Request #265 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

Add raw_as_bytes option to Unpacker. #265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jan 11, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix AppVeyor's test script
  • Loading branch information
methane committed Jan 11, 2018
commit fefd055630c5e9b32bce1faa00140bdfba601e6a
4 changes: 3 additions & 1 deletion ci/runtests.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
%PYTHON%\python.exe setup.py install
%PYTHON%\python.exe -c "import sys; print(hex(sys.maxsize))"
%PYTHON%\python.exe -c "from msgpack import _packer, _unpacker"
%PYTHON%\python.exe -m pytest -v test
%PYTHON%\python.exe setup.py bdist_wheel
%PYTHON%\python.exe -m pytest -v test
SET EL=%ERRORLEVEL%
exit /b %EL%
0