Skip to content

Commit

Permalink
Fix missing imports in test_screen
Browse files Browse the repository at this point in the history
  • Loading branch information
lordmauve committed Mar 2, 2021
1 parent a4d585d commit dac8c70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.x
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.x
python-version: 3.7
- name: Install xvfb
run: |
sudo apt-get install xvfb
Expand Down
2 changes: 2 additions & 0 deletions test/test_screen.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import sys
import unittest
import pygame
import pygame.image
import numpy as np
from pathlib import Path

from pgzero.screen import Screen
from pgzero.loaders import set_root, images
Expand Down

0 comments on commit dac8c70

Please sign in to comment.