我正在尝试使用gitlab运行程序来运行maven项目集成测试,该测试需要一个cassandra数据库。我不知道如何编写gitlab-ci.yml文件。目前这就是我所拥有的
stages:
- test
test_job:
stage: test
script: "mvn clean verify -DlocalIntegrationTests=true"
when: on_success
except:
- production
Cassandra没有启动。如何更改文件以包含cassandra启动?
1条答案
按热度按时间1tu0hz3e1#
您可以将cassandra作为服务运行,并从测试阶段连接到它
在这里您将了解如何访问该服务。