We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f909097 commit e65a0eaCopy full SHA for e65a0ea
.github/workflows/test.yml
@@ -2,10 +2,10 @@ name: 'test'
2
3
on:
4
push:
5
- paths:
6
- - 'examples/projects/**'
7
- - 'pyfpga/**'
8
- - 'tests/**'
+# paths:
+# - 'examples/projects/**'
+# - 'pyfpga/**'
+# - 'tests/**'
9
10
jobs:
11
test:
Makefile
@@ -2,7 +2,12 @@
.PHONY: docs
-export PATH := $(PWD)/tests/mocks:$(PATH)
+ifeq ($(OS),Windows_NT)
+ PATH_SEP := ;
+else
+ PATH_SEP := :
+endif
+export PATH := $(CURDIR)/tests/mocks$(PATH_SEP)$(PATH)
12
all: docs lint test
13
@@ -15,6 +20,8 @@ lint:
15
20
git diff --check --cached
16
21
17
22
23
+ $(info OS = $(OS))
24
+ $(info PATH = $(PATH))
18
25
pytest
19
26
cd tests && bash regress.sh
27
0 commit comments