File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ upstream:
12
12
13
13
- ` bundle install `
14
14
- Copy ` spec/support/sample.config.yml ` to ` spec/support/config.yml ` and edit it
15
- - Run the tests with ` bundle exec rspec `
15
+ - Run the tests with ` bundle exec rspec ` and ` bundle exec cucumber `
16
16
17
- Note that if you don't have all the supported databases installed and running,
18
- some tests will fail .
17
+ Note that the Cucumber specs require ` redis ` to be running, you can either run it globally
18
+ on your system or use the provided ` docker-compose.yml ` file and run ` docker compose up ` .
19
19
20
20
## 3. Prepare your contribution
21
21
Original file line number Diff line number Diff line change 1
1
== Development (unreleased)
2
2
3
+ == Chores
4
+ * Update CONTRIBUTE.md to mention Cucumber specs and Redis dependency https://github.com/DatabaseCleaner/database_cleaner/pull/721
5
+
3
6
== 2.1.0 2024-10-24
4
7
5
8
=== Changes
Original file line number Diff line number Diff line change
1
+ services :
2
+ redis :
3
+ image : redis:6.2-alpine
4
+ restart : always
5
+ ports :
6
+ - ' 127.0.0.1:6379:6379'
7
+ command : redis-server --save 20 1 --loglevel warning
You can’t perform that action at this time.
0 commit comments