Skip to content

Commit

Permalink
✅ update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
userElaina committed Nov 27, 2024
1 parent 7d5245f commit b75511a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test_example.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from anyplayer import get_player

player = get_player('auto', '../.ignore-archive/anyplayerarchive/badapple.mp3')
player = get_player('auto', '../.ignore-archive/ba-archive/badapple.wav')
player.start()
player.wait()
3 changes: 2 additions & 1 deletion tests_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ py test_src.py
conda deactivate
py -m build
twine check dist/*
twine upload --repository testpypi dist/*

conda activate py311
py -m pip install dist/*.whl
pip install -i https://test.pypi.org/simple/ anyplayer
py test_example.py

conda deactivate
Expand Down
4 changes: 3 additions & 1 deletion tests_venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ py1 test_src.py

py -m build
twine check dist/*
twine upload --repository testpypi dist/*

py1 -m pip install dist/*.whl
pip1 uninstall anyplayer
pip1 install -i https://test.pypi.org/simple/ anyplayer
py1 test_example.py

twine upload dist/*

0 comments on commit b75511a

Please sign in to comment.