We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 831069d commit c93a358Copy full SHA for c93a358
2 files changed
.github/workflows/tests.yaml
@@ -17,7 +17,8 @@ jobs:
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
20
- pip install pillow numpy pathlib scikit-image argparse vunit_hdl
+ pip install pillow numpy pathlib scikit-image argparse
21
+ pip install vunit_hdl --pre
22
23
- uses: ghdl/setup-ghdl@v1
24
with:
scripts/run.py
@@ -102,6 +102,7 @@ def generate_tests(obj):
102
103
104
VU = VUnit.from_argv()
105
+VU.add_vhdl_builtins()
106
LIB = VU.add_library("lib")
107
LIB.add_source_files(Path(__file__).parent / ".." / "sim" / "edgedetect_tb.vhd")
108
LIB.add_source_files(Path(__file__).parent / ".." / "src" / "rgb2gray.vhd")
0 commit comments