1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-15 02:54:09 -04:00

Compare commits

..

No commits in common. "2983648a4cdb2349db1c11377ccc7c784780ecbe" and "984ab3570adac0256bf372cd8556202e762f1021" have entirely different histories.

2 changed files with 2 additions and 13 deletions

View file

@ -1,9 +1,7 @@
addons:
homebrew:
brewfile: true
packages:
- python3
update: true
brewfile: true
cache:
directories:
- $HOME/perl_modules
@ -25,12 +23,6 @@ install:
# Tests are failing for them sometimes
- sudo cpanm --notest Capture::Tiny IPC::System::Simple
- sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace
# Taken from https://github.com/mesa3d/mesa/blob/4d57a2750485e51b34e0bc413100e4e2787a4e84/.travis.yml
# thanks!
# Set PATH for homebrew pip3 installs
- PYTHON_VERSION=$(python3 -V | awk '{print $2}' | cut -d. -f1-2)
- PATH="$HOME/Library/Python/$PYTHON_VERSION/bin:${PATH}"
- export PY_MODS='attrs configobj pycotap pysol-cards random2 setuptools six'
- sudo pip3 install --upgrade $PY_MODS flake8 flake8-import-order
- sudo pip2 install --upgrade $PY_MODS

View file

@ -355,10 +355,7 @@ Please check your %(app)s installation.
if music:
app.music_playlist = list(music)[:]
app.miscrandom.shuffle(app.music_playlist)
# Cancelling because otherwise people complain
# that the music order is not random.
SHOULD_PUT_bye_for_now_FIRST = False
if SHOULD_PUT_bye_for_now_FIRST:
if 1:
for m in app.music_playlist:
if m.name.lower() == "bye_for_now":
app.music_playlist.remove(m)