We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b81236 commit 57cad00Copy full SHA for 57cad00
.github/workflows/sanityTesting.yml
@@ -26,6 +26,7 @@ jobs:
26
python -m pip install --upgrade pip
27
pip install wheel
28
pip install .
29
+ sudo apt-get install x11-utils
30
- name: Run headless tests
31
uses: GabrielBB/xvfb-action@v1
32
with:
p5/visualTests/sanityTests/2DSanityTests/test4.py
@@ -1,11 +1,13 @@
1
from p5 import *
2
3
+def setup():
4
+ size(640, 360)
5
+
6
def draw():
7
8
if frame_count > 30:
9
exit()
10
# Sets the screen to be 640 pixels wide and 360 pixels high
- size(640, 360)
11
12
# Set the background to black and turn off the fill color
13
background(0)
0 commit comments