Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

palace

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

palace - npm Package Compare versions

Comparing version
0.2.2
to
0.2.3
+1
-1
palace.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: palace
Version: 0.2.2
Version: 0.2.3
Summary: Pythonic Audio Library and Codecs Environment

@@ -5,0 +5,0 @@ Home-page: https://mcsinyx.github.io/palace

Metadata-Version: 2.1
Name: palace
Version: 0.2.2
Version: 0.2.3
Summary: Pythonic Audio Library and Codecs Environment

@@ -5,0 +5,0 @@ Home-page: https://mcsinyx.github.io/palace

[metadata]
name = palace
version = 0.2.2
version = 0.2.3
url = https://mcsinyx.github.io/palace

@@ -5,0 +5,0 @@ author = Nguyễn Gia Phong

@@ -20,5 +20,3 @@ # Functional tests using examples

from os import environ
from os.path import abspath, dirname, join
from platform import system
from random import choices

@@ -46,6 +44,3 @@ from subprocess import PIPE, run, CalledProcessError

travis_macos = bool(environ.get('TRAVIS')) and system() == 'Darwin'
skipif_travis_macos = mark.skipif(travis_macos, reason='Travis CI for macOS')
def capture(*argv):

@@ -56,3 +51,2 @@ """Return the captured standard output of given Python script."""

@skipif_travis_macos
def test_event(aiff, flac, mp3, ogg, wav):

@@ -69,3 +63,2 @@ """Test the event handling example."""

@skipif_travis_macos
def test_hrtf(ogg):

@@ -85,3 +78,2 @@ """Test the HRTF example."""

@skipif_travis_macos
def test_latency(mp3):

@@ -95,3 +87,2 @@ """Test the latency example."""

@skipif_travis_macos
@mark.parametrize('preset', REVERB_PRESETS)

@@ -106,3 +97,2 @@ def test_reverb(preset, flac):

@skipif_travis_macos
def test_stdec(aiff):

@@ -109,0 +99,0 @@ """Test the stdec example."""

@@ -20,4 +20,2 @@ # Message handling functional tests

import aifc
from os import environ
from platform import system
from unittest.mock import Mock

@@ -31,6 +29,2 @@ from uuid import uuid4

travis_macos = bool(environ.get('TRAVIS')) and system() == 'Darwin'
skipif_travis_macos = mark.skipif(travis_macos, reason='Travis CI for macOS')
def mock(message):

@@ -47,3 +41,2 @@ """Return the MessageHandler corresponding to the given message."""

@skipif_travis_macos
def test_source_stopped(wav):

@@ -59,3 +52,2 @@ """Test the handling of source stopped message."""

@skipif_travis_macos
def test_source_force_stopped(ogg):

@@ -76,3 +68,2 @@ """Test the handling of source force stopped message."""

@skipif_travis_macos
def test_buffer_loading(aiff):

@@ -79,0 +70,0 @@ """Test the handling of buffer loading message."""

@@ -11,11 +11,6 @@ [tox]

pytest-cov
commands = pytest
pytest-flake8
commands = pytest --flake8
setenv = CYTHON_TRACE = 1
passenv = TRAVIS
[testenv:lint]
skip_install = true
deps = flake8
commands = flake8
[flake8]

@@ -22,0 +17,0 @@ filename = *.pxd, *.pyx, *.py