Chia VDF to 0.9 (#1138)

* Chia VDF to 0.9

* Try test-cache 20
This commit is contained in:
Gene Hoffman
2021-03-03 20:54:19 -08:00
committed by GitHub
parent 714597b04f
commit ccbd20bc94
10 changed files with 16 additions and 15 deletions
@@ -58,7 +58,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
+3 -3
View File
@@ -14,7 +14,7 @@ jobs:
build:
name: MacOS Core Tests
runs-on: ${{ matrix.os }}
timeout-minutes: 80
timeout-minutes: 70
strategy:
fail-fast: false
max-parallel: 4
@@ -58,7 +58,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
@@ -90,4 +90,4 @@ jobs:
- name: Test blockchain code with pytest
run: |
. ./activate
./venv/bin/py.test tests/core -v --durations 0
./venv/bin/py.test tests/core -s -v --durations 0
@@ -58,7 +58,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
@@ -58,7 +58,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
@@ -65,7 +65,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
+1 -1
View File
@@ -65,7 +65,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
@@ -65,7 +65,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
@@ -14,7 +14,7 @@ jobs:
build:
name: Ubuntu Wallet Test
runs-on: ${{ matrix.os }}
timeout-minutes: 50
timeout-minutes: 40
strategy:
fail-fast: false
max-parallel: 4
@@ -65,7 +65,7 @@ jobs:
with:
repository: 'Chia-Network/test-cache'
path: '.chia'
ref: '0.19.0'
ref: '0.20.0'
fetch-depth: 1
- name: Link home directory
@@ -102,9 +102,9 @@ jobs:
- name: Test clvm code with pytest
run: |
. ./activate
./venv/bin/py.test tests/clvm -v --durations 0
./venv/bin/py.test tests/clvm -s -v --durations 0
- name: Test blockchain code with pytest
run: |
. ./activate
./venv/bin/py.test tests/wallet -v --durations 0
./venv/bin/py.test tests/wallet -s -v --durations 0
+2 -1
View File
@@ -5,5 +5,6 @@ python3 -m venv venv
. ./activate
pip3 install .
py.test ./tests/blockchain -s -v
py.test ./tests/core -s -v
py.test ./tests/wallet -s -v
py.test ./tests/wallet -s -v
+1 -1
View File
@@ -4,7 +4,7 @@ from setuptools import setup
dependencies = [
"aiter==0.13.20191203", # Used for async generator tools
"blspy==0.3.5", # Signature library
"chiavdf==0.15.1", # timelord and vdf verification
"chiavdf==0.9", # timelord and vdf verification
"chiabip158==1.0", # bip158-style wallet filters
"chiapos==0.12.45", # proof of space
"clvm==0.9.3",