added bs4 dependency for Travis

This commit is contained in:
JanLJL
2020-04-02 09:08:08 +02:00
parent ab8ffdf171
commit 37821b10b2
2 changed files with 3 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ python:
before_install:
# - pip install tox-travis
- pip install codecov
- pip install bs4
- pip install pygraphviz
- pip install kerncraft
install:

View File

@@ -85,7 +85,7 @@ class MOVEntryBuilder:
class MOVEntryBuilderIntelNoPort7AGU(MOVEntryBuilder):
# for SNB and IVB
def build_description(
self, instruction_name, operand_types,
self, instruction_name, operand_types,
port_pressure=[], latency=0):
load, store = self.classify(operand_types)
@@ -107,7 +107,7 @@ class MOVEntryBuilderIntelWithPort7AGU(MOVEntryBuilder):
# for HSW, BDW, SKX and CSX
def build_description(
self, instruction_name, operand_types,
self, instruction_name, operand_types,
port_pressure=[], latency=0):
load, store = self.classify(operand_types)